html {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content-container vertically */
    justify-content: center; /* Centers content-container horizontally */
}

body, html {
    width: 100%;
}

body {
    display: flex;
    font-family: Arial, sans-serif;
    max-width: 600px;
    /* margin: 50px auto; */
    /* padding: 20px; */
    justify-content: center; /* Centers content-container horizontally */
}

form {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 10px;
    max-width: 400px;
}

input, button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border:none;
    background-color: #e6e6e6db;
}

button {
    background-color: #007bffc5;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.error {
    color: red;
}