/* Auth — centered card (esimstep_v2) */
.esim-v2-auth-wrap {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 48px;
    background: linear-gradient(165deg, #f8fafc 0%, #ecfdf5 45%, #ffffff 100%);
}
.esim-v2-auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--gray-200, #e2e8f0);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 28px 26px 30px;
}
.esim-v2-auth-card .auth-brand-logo {
    display: block;
    margin: 0 auto 20px;
    max-height: 36px;
    width: auto;
}
.esim-v2-auth-card .auth-title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: 800;
    font-size: 1.35rem;
    text-align: center;
    color: var(--gray-900, #0f172a);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.esim-v2-auth-card .auth-lead {
    text-align: center;
    color: var(--gray-500, #64748b);
    font-size: 0.9rem;
    margin-bottom: 22px;
}
.esim-v2-auth-card .form-label,
.esim-v2-auth-card .form--label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--gray-700, #334155);
    margin-bottom: 6px;
}
.esim-v2-auth-card .form-control,
.esim-v2-auth-card .form--control {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--gray-200, #e2e8f0);
    padding: 10px 14px;
    font-size: 0.95rem;
}
.esim-v2-auth-card .form-control:focus,
.esim-v2-auth-card .form--control:focus {
    border-color: var(--green-400, #4ade80);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}
.esim-v2-auth-card .btn-auth-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: 800;
    font-size: 0.95rem;
    background: var(--green-500, #2ecc71);
    color: #fff;
    margin-top: 6px;
    transition: background 0.2s, transform 0.15s;
}
.esim-v2-auth-card .btn-auth-submit:hover {
    background: var(--green-600, #27ae60);
    color: #fff;
    transform: translateY(-1px);
}
.esim-v2-auth-card .auth-row-2 .col-12,
.esim-v2-auth-card .auth-row-2 .col-sm-6 {
    margin-bottom: 0;
}
.esim-v2-auth-card .flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.esim-v2-auth-card .forgot-password {
    font-size: 0.85rem;
    font-weight: 600;
}
.esim-v2-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-600, #475569);
}

/* Social (auth) */
.esim-v2-social-wrap {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100, #f1f5f9);
}
.esim-v2-social-wrap .sign-in__or {
    text-align: center;
    margin-bottom: 14px;
}
.esim-v2-social-wrap .or-text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400, #94a3b8);
}
.esim-v2-social-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.esim-v2-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    border: 1px solid var(--gray-200, #e2e8f0);
    background: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-800, #1e293b);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.esim-v2-social-btn:hover {
    border-color: var(--green-200, #bbf7d0);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    color: var(--gray-900, #0f172a);
}
.esim-v2-social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .esim-v2-auth-card {
        padding: 22px 18px 24px;
    }
}
