.login-container {
    max-width: 400px;
    margin: 3rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form h2 {
    margin-bottom: 1rem;
    text-align: center;
    color: #0d47a1;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 0.6rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border 0.2s ease;
    width: 95% !important;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #0d47a1;
    outline: none;
}

.form-options {
    display: flex;
    justify-content: flex-start;
    font-size: 0.9rem;
    color: #444;
}

.login-btn {
    background-color: #0d47a1;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #08367a;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.secondary-btn {
    margin-top: 0.5rem;
    background-color: #e3f2fd;
    color: #0d47a1;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.secondary-btn:hover {
    background-color: #bbdefb;
}