.jobs-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 70vh;
}

.jobs-auth-card {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    background: #f8f9fa;
}

.auth-tab {
    flex: 1;
    border: none;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: #999;
    transition: all 0.3s;
}

.auth-tab.active {
    background: white;
    color: var(--jobs-primary-color);
}

.auth-panel {
    display: none;
    padding: 40px;
}

.auth-panel.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: var(--jobs-primary-color);
}

.auth-header p {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

#jobs-login-form-custom p {
    margin-bottom: 15px;
}

#jobs-login-form-custom label {
    display: none;
}

#jobs-login-form-custom input[type="text"],
#jobs-login-form-custom input[type="password"],
.jobs-auth-form input,
.jobs-auth-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

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

.jobs-auth-form .form-row {
    margin-bottom: 20px;
}

.jobs-auth-form .form-row .form-group {
    margin-bottom: 0;
}

#jobs-login-form-custom input[type="submit"],
.auth-submit {
    width: 100%;
    padding: 15px;
    background: var(--jobs-primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Hide header on login page */
.jobs-auth-page .site-header,
.jobs-auth-page .jobs-header-system,
.jobs-auth-page #masthead {
    display: none !important;
}

.social-icon:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Biometric login notification styling */
#auth-status-message p {
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#auth-status-message p[style*="color: blue"] {
    background: #eff6ff;
    color: #1e40af !important;
    border: 1px solid #bfdbfe;
}

#auth-status-message p[style*="color: red"] {
    background: #fef2f2;
    color: #b91c1c !important;
    border: 1px solid #fecaca;
}

#auth-status-message p[style*="color: green"] {
    background: #f0fdf4;
    color: #166534 !important;
    border: 1px solid #bbf7d0;
}
