
.login-container {
    padding: 10px;
    margin: 0;
    padding-bottom: 25vh;
}

.login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group a {
    text-decoration: none;
    color: #402620;
    transition: text-deconration 0.3s ease-in-out;
    font-weight: 600;
}

.login-form .form-group a:hover {
    text-decoration: underline;
}


.login-form label {
    font-weight: 600;
    color: #333333;
    display: block;
    margin-bottom: 8px;
}


.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 25px; 
    border: 1px solid #cccccc;
    background-color: #f9f9f9;
    color: #333333;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}


.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #FFBD59;
    box-shadow: 0 0 5px rgba(255, 189, 89, 0.8);
    outline: none;
}


.login-button {
    width: 100%;
    padding: 12px;
    background-color: #FFBD59;
    border: none;
    border-radius: 25px; 
    color: #402620;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transition: color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.login-button:hover {
    background-color: #d99a4d;
    color: white;
}


.login-form .errorlist {
    margin: 0;
    padding: 0;
    color: #ff0000;
    list-style-type: none;
    font-size: 0.9rem;
}

.login-form .errorlist li {
    margin-bottom: 5px;
}


.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
}

.form-group-question {
    padding: 20px 0;
    gap: 10px;
}

.form-group-question label {
    margin: 0;
    font-weight: 500;
}


.form-group-question a {
    text-decoration: none;
    color: #402620;
    transition: text-deconration 0.3s ease-in-out;
    font-weight: 600;
}

.form-group-question a:hover {
    text-decoration: underline;
}