/* ═══════════════════════════════════════════════════════
   STUDENT REGISTRATION – register.css
   Dark glassmorphism theme, multi-step wizard + face ID
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:       #020617;
    --surface:  #071232;
    --border:   rgba(96, 165, 250, 0.18);
    --accent:   #38bdf8;
    --accent2:  #2563eb;
    --text:     #f8fafc;
    --muted:    #94a3b8;
    --dim:      #64748b;
    --danger:   #ef4444;
    --success:  #22c55e;
    --warning:  #f97316;
}

html, body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: #020617 !important;
    background-color: #020617 !important;
    color: var(--text) !important;
    min-height: 100vh;
}

/* ── Mobile Header & Navigation Drawer ── */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    padding: 0 16px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-header .hamburger {
    background: #1e3a8a;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    flex-shrink: 0;
}

.mobile-header-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.mobile-header-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #020b2f;
    z-index: 998;
    transition: left 0.3s ease;
    padding-top: 75px;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.nav-mobile.active {
    left: 0;
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    outline: none;
    background: transparent;
    margin: 4px 10px;
    transition: all 0.2s ease;
}

.nav-mobile ul li a i,
.nav-mobile ul li a ion-icon {
    font-size: 20px;
    color: #ffffff;
}

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active {
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border: none;
}

.nav-mobile ul li a:hover i,
.nav-mobile ul li a.active i,
.nav-mobile ul li a:hover ion-icon,
.nav-mobile ul li a.active ion-icon {
    color: #ffffff;
}

/* ── Back Link ──────────────────────────────────────────── */
.back-link {
    position: fixed;
    top: 1.5rem;
    left: 1.75rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s, transform 0.2s;
    z-index: 100;
}
.back-link:hover { color: #38bdf8; transform: translateX(-4px); }

/* ── Step Indicator ─────────────────────────────────────── */
.step-wrapper {
    display: flex;
    justify-content: center;
    padding: 5.5rem 1rem 1.5rem;
}

.steps-track {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 560px;
    width: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.2);
    background: rgba(6, 16, 44, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dim);
    transition: all 0.4s ease;
    position: relative;
}

.step-item.active .step-circle {
    border-color: #38bdf8;
    background: rgba(37, 99, 235, 0.22);
    color: #38bdf8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-item.done .step-circle {
    border-color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

.step-item.done .step-circle span {
    display: none;
}

.step-item.done .step-circle::after {
    content: '✓';
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.step-label {
    font-size: 0.72rem;
    color: var(--dim);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.step-item.active .step-label { color: #38bdf8; font-weight: 600; }
.step-item.done .step-label   { color: #60a5fa; }

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(96, 165, 250, 0.15);
    margin: 0 0.25rem;
    margin-bottom: 1.3rem;
    border-radius: 99px;
    transition: background 0.4s;
}

.step-line.done {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* ── Main Layout ────────────────────────────────────────── */
main {
    display: flex;
    justify-content: center;
    padding: 0 1.25rem 3rem;
}

.reg-section {
    width: 100%;
    max-width: 860px;
}

/* ── Registration Card ──────────────────────────────────── */
.reg-card {
    background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.18), transparent 55%),
                radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.12), transparent 50%),
                linear-gradient(145deg, #071232, #040a1e);
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 28px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 0 40px rgba(37, 99, 235, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

/* ── Panel System ───────────────────────────────────────── */
.reg-panel { display: none; animation: panelIn 0.4s cubic-bezier(0.22,1,0.36,1); }
.reg-panel.active { display: block; }

@keyframes panelIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Panel Header ───────────────────────────────────────── */
.panel-header { margin-bottom: 1.75rem; }

.panel-header h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(120deg, #fff, var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-sub {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Form Grid ──────────────────────────────────────────── */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
    margin-bottom: 1.5rem;
}

.input-group { display: flex; flex-direction: column; gap: 0.3rem; }
.input-group.span-full { grid-column: 1 / -1; }

.input-group > span:first-child {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

.input-group > span:first-child em {
    color: var(--accent);
    font-style: normal;
    margin-left: 2px;
}

.input-group input,
.input-group select {
    width: 100%;
    background: rgba(4, 11, 32, 0.75);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    appearance: none;
}

.input-group input::placeholder { color: var(--dim); }

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.28);
    background: rgba(7, 18, 50, 0.85);
}

.input-group select option { background: #06112e; color: var(--text); }

.input-group input.input-error { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.2) !important; }

.field-error {
    font-size: 0.76rem;
    color: #f87171;
    display: none;
    margin-top: 0.1rem;
}

/* ── Password Wrap ──────────────────────────────────────── */
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 3rem; }
.pw-toggle {
    position: absolute;
    right: 0.9rem;
    top: 50%; transform: translateY(-50%);
    background: none; border: none;
    cursor: pointer; font-size: 1.25rem; line-height: 1;
    color: var(--dim); transition: color 0.2s, transform 0.15s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pw-toggle:hover { color: #38bdf8; }
.pw-toggle:active { transform: translateY(-50%) scale(0.92); }

/* ── Strength Bar ───────────────────────────────────────── */
.strength-bar {
    height: 4px; border-radius: 99px;
    background: rgba(96, 165, 250, 0.15);
    margin-top: 0.4rem; overflow: hidden;
}
.strength-fill {
    height: 100%; border-radius: 99px; width: 0;
    transition: width 0.4s ease, background 0.4s ease;
}
.strength-label { font-size: 0.73rem; color: var(--dim); margin-top: 0.25rem; display: block; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 0.9rem 1.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s, background 0.2s;
    text-decoration: none;
    width: auto;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary.full-width { width: 100%; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-weight: 600;
    padding: 0.9rem 1.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(37, 99, 235, 0.15); border-color: #3b82f6; transform: translateY(-1px); }

.btn-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

/* Step 1 & 2 have single next button full width */
#next1, #next2 { width: 100%; }

/* spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
    display: inline-block;
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ── File Upload Zones ──────────────────────────────────── */
.file-upload-zone {
    border: 2px dashed rgba(96, 165, 250, 0.25);
    border-radius: 14px;
    background: rgba(4, 11, 32, 0.5);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    overflow: hidden;
}
.file-upload-zone:hover,
.file-upload-zone.drag-over {
    border-color: #38bdf8;
    background: rgba(37, 99, 235, 0.1);
}

.file-upload-inner {
    padding: 1.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.file-upload-inner span { font-size: 0.88rem; color: var(--muted); }
.file-upload-inner .file-hint { font-size: 0.75rem; color: var(--dim); }

/* ── Face Zone ──────────────────────────────────────────── */
.face-zone {
    background: rgba(4, 11, 32, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cam-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cam-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem;
    color: var(--dim);
    font-size: 0.9rem;
}

.cam-placeholder svg { opacity: 0.4; }

#faceVideo {
    width: 100%;
    display: none;
    border-radius: 18px;
}

#faceCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 18px;
    display: none;
    pointer-events: none;
}

/* Status bar */
.face-status-bar {
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 1rem;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#faceStatusText {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.3s;
}

#faceStatusText.status-success { color: #86efac; }
#faceStatusText.status-warning { color: #fde68a; }
#faceStatusText.status-error   { color: #fca5a5; }

/* Face actions */
.face-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Captured preview */
#capturePreview {
    text-align: center;
}

.captured-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.captured-img-wrap img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

.captured-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.captured-desc {
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* Model loading */
.model-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.loading-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-top-color: #38bdf8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

/* ── Consent Box ────────────────────────────────────────── */
.consent-box {
    background: rgba(4, 11, 32, 0.5);
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.consent-lbl {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    align-items: flex-start;
}

.consent-lbl input[type="checkbox"] {
    width: 17px; height: 17px;
    accent-color: #2563eb;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-lbl span {
    font-size: 0.855rem;
    color: var(--muted);
    line-height: 1.5;
}

.link-accent {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 500;
}
.link-accent:hover { text-decoration: underline; }

/* ── Success Panel ──────────────────────────────────────── */
.success-panel {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    40%  { transform: translateY(-20px); }
    70%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.success-panel h2 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(120deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-panel p { color: var(--muted); line-height: 1.65; margin-bottom: 0.5rem; font-size: 0.95rem; }
.success-note { font-size: 0.82rem; color: var(--dim) !important; }

/* ── Privacy Modal ──────────────────────────────────────── */
.priv-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.priv-modal.open { display: flex; }

.priv-card {
    background: linear-gradient(145deg, #071232, #040b20);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 24px;
    padding: 2.25rem;
    width: 100%; max-width: 560px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 35px rgba(37, 99, 235, 0.15);
    animation: panelIn 0.35s cubic-bezier(0.22,1,0.36,1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.priv-card h2 { font-size: 1.4rem; color: var(--text); }

.priv-body {
    overflow-y: auto;
    flex: 1;
    padding-right: 0.5rem;
}

.priv-body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0.9rem;
}
.priv-body p:last-child { margin-bottom: 0; }

.priv-close {
    position: absolute;
    top: 1rem; right: 1.4rem;
    background: none; border: none;
    color: var(--dim); font-size: 1.6rem;
    cursor: pointer; line-height: 1; padding: 0;
    transition: color 0.2s;
}
.priv-close:hover { color: var(--text); }

/* ── Toast ──────────────────────────────────────────────── */
#toast {
    position: fixed;
    bottom: 2rem; right: 2rem;
    min-width: 280px; max-width: 400px;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
#toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#toast.toast-success { background: #0d2e20; border: 1px solid var(--success); color: #86efac; }
#toast.toast-error   { background: #2e0d0d; border: 1px solid var(--danger); color: #fca5a5; }
#toast.toast-info    { background: #0d1e2e; border: 1px solid #38bdf8; color: #7dd3fc; }
#toast.toast-warning { background: #2e1e0d; border: 1px solid var(--warning); color: #fde68a; }
.toast-icon { font-size: 1.15rem; flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .reg-card { padding: 1.75rem 1.25rem; border-radius: 20px; }
    .step-wrapper { padding-top: 4.5rem; }
    .steps-track { gap: 0; }
    .step-circle { width: 36px; height: 36px; font-size: 0.8rem; }
    .step-label { font-size: 0.65rem; }
    .step-line { margin: 0 0.1rem; margin-bottom: 1rem; }
    .panel-header h2 { font-size: 1.3rem; }
    .btn-row { flex-direction: column-reverse; }
    .btn-row .btn-secondary,
    .btn-row .btn-primary { width: 100%; }
    #capturePreview .captured-img-wrap img { width: 180px; height: 180px; }
}


/* ── Extracted inline styles ── */
@keyframes corSpin{to{transform:rotate(360deg)}}

/* ── Validation / Error Modal ────────────────────────────── */
.val-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.val-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.val-modal-card {
    background: linear-gradient(145deg, #0d121c, #131926);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(239, 68, 68, 0.15);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.val-modal-overlay.active .val-modal-card {
    transform: scale(1);
}
.val-icon-badge {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.val-modal-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.val-modal-body p {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.val-modal-hint {
    font-size: 0.82rem;
    color: var(--dim);
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
}
.val-modal-footer {
    margin-top: 1.5rem;
}

/* ════ RESPONSIVE & MOBILE FIXES ════ */
@media (max-width: 900px) {
    main {
        padding: 1.5rem 1rem 2rem !important;
    }

    .step-wrapper {
        padding: 2.5rem 0.75rem 1rem !important;
    }

    .steps-track {
        max-width: 100% !important;
    }

    .step-label {
        font-size: 0.75rem !important;
    }

    .step-circle {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
    }

    .reg-card {
        padding: 1.5rem 1.25rem !important;
        border-radius: 20px !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .back-link {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 1.5rem 1.5rem 0.5rem !important;
        display: inline-flex !important;
    }
}

@media (max-width: 480px) {
    .step-wrapper {
        padding: 2rem 0.5rem 0.75rem !important;
    }

    .step-label {
        display: none !important;
    }

    .step-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }

    .reg-card {
        padding: 1.25rem 0.85rem !important;
    }

    .panel-header h2 {
        font-size: 1.35rem !important;
    }

    .form-grid label input,
    .form-grid label select {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.92rem !important;
    }
}