/* VirtualHire.ph - Enhanced Login Page Styling */

.login-container {
    min-height: calc(100vh - 145px); /* Adjusts for the navbar and footer height */
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.login-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* Brand accent line at the top of the card */
.login-card::before {
    content: '';
    height: 4px;
    display: block;
}

/* Form styling */
.form-floating .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* Login button styling */
.btn-login {
    padding: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

/* Links styling */
.auth-links a {
    color: #0d6efd;
    transition: all 0.2s ease;
}

.auth-links a:hover {
    color: #0a58ca;
    text-decoration: underline !important;
}

/* Brand logo in the card */
.login-logo {
    margin-bottom: 1.5rem;
}

.login-logo img {
    height: 40px;
}

/* Remember me checkbox styling */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Error states */
.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-container {
        padding: 1rem;
    }
}
