.login-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-color: #f8f9fa;
    padding: 2rem;
}

.login-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 450px;
    border-top: 5px solid #E84C3D; /* Brand red */
}

.login-form h1 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-family: "Causten", sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: "Causten", sans-serif;
    box-sizing: border-box;
}

.login-form input:focus {
    border-color: #E84C3D;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 76, 61, 0.1);
}

.login-form .checkbox {
    margin-bottom: 1.5rem;
}

.login-form .checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.login-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #E84C3D;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Causten", sans-serif;
}

.login-form button[type="submit"]:hover {
    background-color: #d63a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 76, 61, 0.2);
}

.alert {
    background-color: #fde8e8;
    color: #c81e1e;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #fbd5d5;
    text-align: center;
}

.info {
    background-color: #e1effe;
    color: #1e429f;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}
