/* ── Sign In Page Styles v2 ────────────────────────────── */

/* Full page wrapper to center the card */
.auth-page-wrapper {
    min-height: 100vh;
    background-color: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    font-family: var(--hirevo-font);
}

/* Centered Main Card containing left and right split columns */
.auth-split-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(11, 31, 59, 0.1), 0 15px 25px -10px rgba(11, 31, 59, 0.05);
    overflow: hidden;
}

/* Left side panel (Benefits/Trust Info) */
.auth-split-left {
    width: 55%;
    background-color: #ffffff;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid #f1f5f9;
}

/* Right side panel (Form card + Assurance cards) */
.auth-split-right {
    width: 45%;
    background-color: #f8fafc;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Sparkle motivation badge */
.auth-badge-motivation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #eff6ff;
    color: #2563EB;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.auth-left-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hirevo-primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.auth-left-title span.highlight-text {
    color: #2563EB;
}

.auth-left-subtitle {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Benefit List and Bullet Points */
.auth-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.auth-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.auth-benefit-icon {
    width: 36px;
    height: 36px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563EB;
}

.auth-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.auth-benefit-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hirevo-primary);
    margin: 0 0 0.15rem 0;
}

.auth-benefit-content p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Stats Card Grid */
.auth-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background-color: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 2.25rem;
    width: 100%;
}

.auth-stat-item {
    text-align: center;
}

.auth-stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hirevo-primary);
    margin-bottom: 0.15rem;
}

.auth-stat-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
}

/* Testimonial Box */
.auth-testimonial-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2.25rem;
    position: relative;
    border: 1px solid #f1f5f9;
    width: 100%;
}

.auth-testimonial-quote {
    color: #2563EB;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.auth-testimonial-text {
    font-size: 0.8125rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

/* How it Works Section */
.auth-how-works {
    margin-bottom: 2.25rem;
    width: 100%;
}

.auth-how-works-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hirevo-primary);
    margin-bottom: 1.25rem;
}

.auth-how-works-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.auth-how-works-flow::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 15%;
    width: 70%;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
    z-index: 1;
}

.auth-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    position: relative;
    z-index: 2;
}

.auth-step-circle {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.auth-step-circle svg {
    color: #475569;
    width: 16px;
    height: 16px;
}

.auth-step-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #2563EB;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
}

.auth-step-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hirevo-primary);
    margin-bottom: 0.15rem;
}

.auth-step-desc {
    font-size: 0.65rem;
    color: #64748b;
    line-height: 1.3;
    margin: 0;
}

/* Recruiter / company logos (sign-in & sign-up) */
.hirevo-trusted-logos {
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
    width: 100%;
    margin-bottom: 1.75rem;
}
.hirevo-trusted-logos__title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.9rem;
    text-align: center;
}
.hirevo-trusted-logos__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    flex-wrap: wrap;
}
.hirevo-trusted-logo {
    width: 100px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
    opacity: 0.95;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.hirevo-trusted-logo:hover {
    opacity: 1;
    transform: scale(1.04);
}

/* Form Card (Right Side) */
.auth-card-naukri {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 440px;
}

/* Tabs */
.auth-tabs-naukri {
    display: flex;
    background-color: #f1f5f9;
    padding: 0.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.auth-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    border: none;
    background: none;
}

.auth-tab-btn:hover {
    color: var(--hirevo-primary);
}

.auth-tab-btn.active {
    background-color: #ffffff;
    color: var(--hirevo-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.auth-header-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hirevo-primary);
    margin-bottom: 0.25rem;
    text-align: center;
}

.auth-header-desc {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Inputs & Labels */
.auth-input-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.auth-input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hirevo-primary);
    margin-bottom: 0.375rem;
    display: block;
}

.auth-input-control {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    color: #0f172a;
    transition: all 0.2s ease;
}

.auth-input-control:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.auth-input-control.is-invalid {
    border-color: #ef4444;
}

.auth-input-control::placeholder {
    color: #94a3b8;
}

/* Password wrapper & eye icon */
.auth-password-container {
    position: relative;
}

.auth-password-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.auth-password-toggle-btn:hover {
    color: var(--hirevo-primary);
}

/* Social Buttons */
.auth-social-flex {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.auth-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    width: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.auth-btn-social:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.auth-divider-line {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 1.25rem 0;
}

.auth-divider-line::before,
.auth-divider-line::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider-line:not(:empty)::before {
    margin-right: 0.75rem;
}

.auth-divider-line:not(:empty)::after {
    margin-left: 0.75rem;
}

/* Primary CTA Button */
.auth-btn-primary-naukri {
    background-color: #2563EB !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
}

.auth-btn-primary-naukri:hover {
    background-color: #1d4ed8 !important;
}

/* Password criteria checklist */
.auth-criteria-wrapper {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.auth-criteria-item-naukri {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    transition: color 0.2s ease;
}

.auth-criteria-item-naukri svg {
    color: #64748b;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    padding: 2px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.auth-criteria-item-naukri.valid {
    color: #2563EB;
}

.auth-criteria-item-naukri.valid svg {
    color: #ffffff;
    background-color: #2563EB;
    border-color: #2563EB;
}

/* Footer Link Area */
.auth-footer-link {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}

.auth-footer-link a {
    color: #2563EB;
    font-weight: 700;
    text-decoration: underline;
}

/* Helper text & options */
.auth-meta-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.auth-meta-options a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
}

.auth-meta-options a:hover {
    text-decoration: underline;
}

.auth-legal-privacy {
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.auth-legal-privacy a {
    color: #2563EB;
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .auth-page-wrapper {
        padding: 1rem;
    }
    
    .auth-split-container {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .auth-split-left {
        width: 100%;
        padding: 2rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .auth-split-right {
        width: 100%;
        padding: 2rem 1.5rem;
    }
}

.auth-logo-brand {
    height: 20px;
    opacity: 0.85;
    transition: all 0.2s ease;
}
.auth-logo-brand:hover {
    opacity: 1;
    transform: scale(1.05);
}
