/* =============================================
   ITI CITS Online Exam Portal - Main CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1a3a6b;
    --primary-dark: #0d2247;
    --primary-light: #2952a3;
    --accent: #FF6B35;
    --accent-dark: #e55a24;
    --accent-light: #ff8c5e;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f1f5f9;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #1a3a6b 0%, #2952a3 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #ff8c5e 100%);
    --gradient-hero: linear-gradient(135deg, #0d2247 0%, #1a3a6b 50%, #2952a3 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    scroll-behavior: smooth;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar-brand img {
    height: 48px;
}

.main-navbar {
    background: rgba(13, 34, 71, 0.97) !important;
    backdrop-filter: blur(12px);
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.main-navbar .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navbar .navbar-brand span {
    color: var(--accent);
}

.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
}

.nav-login-btn {
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    border: none;
    transition: var(--transition);
}

.nav-login-btn:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 82, 163, 0.3), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: #ff8c5e;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.hero-card-floating {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 3s ease-in-out infinite;
}

.hero-card-floating+.hero-card-floating {
    animation-delay: 1.5s;
    margin-top: 12px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 90px 0;
    background: #fff;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== LOGIN PORTAL SECTION ===== */
.login-portal-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.login-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    height: 100%;
}

.login-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.login-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 18px;
}

.login-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.login-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-primary);
    padding: 70px 0;
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 8px;
}

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.auth-logo {
    background: var(--gradient-primary);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.auth-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 6px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-label {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(41, 82, 163, 0.12);
    background: #fff;
    outline: none;
}

.btn-auth {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-auth:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 58, 107, 0.35);
}

.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.role-option {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
}

.role-option:hover {
    border-color: var(--primary-light);
    background: var(--bg-light);
}

.role-option.active {
    border-color: var(--primary);
    background: rgba(26, 58, 107, 0.06);
    color: var(--primary);
    font-weight: 600;
}

.role-option .role-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 4px;
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 270px;
    background: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: var(--transition);
}

.sidebar-brand {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-brand-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.sidebar-brand-text {
    color: #fff;
}

.sidebar-brand-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.sidebar-brand-text span {
    font-size: 0.72rem;
    opacity: 0.6;
}

.sidebar-user {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.sidebar-user-text strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
}

.sidebar-user-text span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}

.sidebar-nav {
    padding: 16px 0;
    flex: 1;
}

.sidebar-section-label {
    padding: 10px 20px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.88rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-left-color: var(--accent);
    padding-left: 22px;
}

.sidebar-link.active {
    color: #fff;
    background: rgba(255, 107, 53, 0.15);
    border-left-color: var(--accent);
    font-weight: 600;
}

.sidebar-link .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sidebar-badge {
    background: var(--accent);
    color: #fff;
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: auto;
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-footer a:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: 270px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

.topbar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
}

.topbar-icon-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.topbar-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.content-area {
    padding: 28px;
    flex: 1;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-card-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-card-change {
    font-size: 0.78rem;
    margin-top: 6px;
    font-weight: 500;
}

.stat-card-change.up {
    color: var(--success);
}

.stat-card-change.down {
    color: var(--danger);
}

/* ===== DATA TABLE ===== */
.data-table-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.data-table-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.data-table-header h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.table {
    margin: 0;
}

.table th {
    background: var(--bg-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: none;
    padding: 12px 16px;
}

.table td {
    padding: 13px 16px;
    border-color: var(--border);
    vertical-align: middle;
    font-size: 0.88rem;
}

.table tbody tr:hover {
    background: rgba(26, 58, 107, 0.03);
}

/* ===== BADGES ===== */
.badge-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-active {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.badge-inactive {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
}

.badge-pending {
    background: rgba(245, 158, 11, 0.12);
    color: var(--warning);
}

.badge-pass {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.badge-fail {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
}

/* ===== CARDS ===== */
.panel-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.panel-card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}

.panel-card-header h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
}

.panel-card-body {
    padding: 22px;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.82rem;
    margin-bottom: 20px;
}

/* ===== ALERT MESSAGES ===== */
.alert-custom {
    border-radius: 10px;
    border: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== EXAM CARD ===== */
.exam-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.exam-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.exam-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.exam-status-scheduled {
    background: rgba(59, 130, 246, 0.12);
    color: var(--info);
}

.exam-status-active {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.exam-status-completed {
    background: rgba(100, 116, 139, 0.12);
    color: var(--text-muted);
}

/* ===== PROGRESS ===== */
.progress-custom {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-light);
    overflow: hidden;
}

.progress-bar-custom {
    border-radius: 4px;
    transition: width 0.8s ease;
}

/* ===== ADMIT CARD ===== */
.admit-card-preview {
    border: 3px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    max-width: 700px;
    margin: auto;
}

.admit-card-header-bar {
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
}

.admit-card-body {
    padding: 24px;
}

.admit-card-photo {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--border);
    border-radius: 8px;
}

.admit-card-field label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.admit-card-field p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ===== EXAM TAKING UI ===== */
.exam-ui-wrapper {
    background: var(--bg-light);
    min-height: 100vh;
}

.exam-topbar {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 900;
}

.exam-timer {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff8c5e;
    font-family: 'Poppins', monospace;
}

.exam-timer.warning {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
    color: #f59e0b;
}

.exam-timer.danger {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.question-panel {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
}

.question-number {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.option-item:hover {
    border-color: var(--primary-light);
    background: rgba(41, 82, 163, 0.03);
}

.option-item.selected {
    border-color: var(--primary);
    background: rgba(26, 58, 107, 0.06);
    font-weight: 500;
}

.option-label {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.option-item.selected .option-label {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.question-nav-panel {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
}

.question-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: var(--bg-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.question-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(26, 58, 107, 0.06);
}

.question-nav-btn.answered {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.question-nav-btn.current {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.question-nav-btn.flagged {
    background: var(--warning);
    border-color: var(--warning);
    color: #fff;
}

/* ===== TYPEWRITER ANIMATION ===== */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent)
    }
}

/* ===== FAB BUTTONS ===== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-whatsapp {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fab-scrollup {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(26, 58, 107, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-scrollup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-scrollup:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 58, 107, 0.4);
    color: white;
    text-decoration: none;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand span {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 10px;
}

.footer-heading {
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .content-area {
        padding: 16px;
    }

    .topbar {
        padding: 12px 16px;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .role-selector {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== UTILITIES ===== */
.text-primary-custom {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-primary-custom {
    background: var(--primary) !important;
}

.bg-accent {
    background: var(--accent) !important;
}

.card-shadow {
    box-shadow: var(--shadow);
}

.rounded-custom {
    border-radius: var(--radius) !important;
}

.border-primary-custom {
    border-color: var(--primary) !important;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 58, 107, 0.1);
    color: var(--primary);
    border-radius: 30px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

.overlay-spinner {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== BTN ACCENT ===== */
.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: .88rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255, 107, 53, .3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, .4);
    color: #fff;
}

/* ===== PANEL CARD ===== */
.panel-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel-card-header {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.panel-card-header h6 {
    margin: 0;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-dark);
}

.panel-card-body {
    padding: 22px;
}

/* ===== TOPBAR LAYOUT ===== */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.topbar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

/* ===== ANSWER KEY ===== */
.answer-key-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .3px;
}

/* ===== GLOBAL FILTER BAR ===== */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.filter-search-wrap {
    position: relative;
}

.filter-search-wrap i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 12px;
    z-index: 1;
}

.filter-search-wrap input[type="text"],
.filter-search-wrap input[type="search"] {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 7px 12px 7px 34px;
    font-size: 13px;
    width: 220px;
    outline: none;
    background: #fff;
    font-family: inherit;
}

.filter-search-wrap input:focus {
    border-color: var(--primary);
}

.filter-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13px;
    background: #fff;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.filter-select:focus {
    border-color: var(--primary);
}

.filter-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ===== GLOBAL PAGINATION ===== */
.pag-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    background: #fff;
}

.pag-info {
    font-size: 12.5px;
    color: var(--text-muted);
}

.pag-btns {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.pag-btn {
    border: 1.5px solid var(--border);
    background: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    transition: all .15s;
    line-height: 1;
}

.pag-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pag-btn:hover:not(.active):not(.disabled) {
    background: var(--bg-light);
    color: var(--text-dark);
}

.pag-btn.disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

/* ===== ANSWER KEY BUTTON (student results) ===== */
.btn-answer-key {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fffbeb;
    border: 1.5px solid #f59e0b;
    color: #92400e;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
    cursor: pointer;
}

.btn-answer-key:hover {
    background: #fef3c7;
    color: #78350f;
}

.btn-answer-key.disabled-key {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
    cursor: default;
}

/* --- Unified Landing Page Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gov-blue: #1a3c8f;
    --gov-blue2: #154080;
    --gov-orange: #e07b00;
    --gov-saffron: #f4914a;
    --gov-green: #1a7a3c;
    --gov-red: #a91d27;
    --gov-bg: #f5f6fa;
    --gov-white: #ffffff;
    --gov-border: #d1d8e6;
    --gov-text: #1a1a2e;
    --gov-muted: #5a6373;
    --gov-lightbg: #eef1f9;
    --font-main: 'Noto Sans', 'Roboto', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .16);
}

.gov-top-strip {
    background: var(--gov-blue);
    color: #fff;
    font-size: 11.5px;
    padding: 5px 0;
    border-bottom: 3px solid var(--gov-saffron);
}

.gov-top-strip a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.gov-top-strip a:hover {
    color: #fff;
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

.accessibility-links {
    display: flex;
    gap: 12px;
    font-size: 11px;
}

.accessibility-links span {
    cursor: pointer;
    opacity: .8;
}

.accessibility-links span:hover {
    opacity: 1;
}

.gov-header {
    background: #fff;
    border-bottom: 3px solid var(--gov-orange);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.portal-logo-img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.portal-logo-placeholder {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: var(--gov-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    border: 3px solid var(--gov-orange);
}

.portal-name-block h1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gov-blue);
    line-height: 1.2;
    margin: 0;
}

.portal-name-block p {
    font-size: 12px;
    color: var(--gov-muted);
    margin: 2px 0 0;
}

.header-divider {
    width: 1px;
    height: 50px;
    background: var(--gov-border);
    flex-shrink: 0;
}

.header-emblem {
    font-size: 38px;
    flex-shrink: 0;
    opacity: .85;
}

.gov-navbar {
    background: var(--gov-blue);
    border-bottom: 3px solid var(--gov-orange);
}

.gov-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gov-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gov-nav-links li a {
    display: block;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 16px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    transition: background .2s, color .2s;
    letter-spacing: .2px;
}

.gov-nav-links li a:hover,
.gov-nav-links li a.active {
    background: var(--gov-orange);
    color: #fff;
}

.nav-auth-btns {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    flex-shrink: 0;
}

.btn-nav-login {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: #fff;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.btn-nav-register {
    background: var(--gov-saffron);
    border: none;
    color: #fff;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-register:hover {
    background: var(--gov-orange);
    color: #fff;
}

.nav-toggler {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .4);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
}

.nav-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}

.notice-bar {
    background: var(--gov-lightbg);
    border-bottom: 1px solid var(--gov-border);
    padding: 8px 0;
}

.notice-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-label {
    background: var(--gov-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 3px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-ticker {
    flex: 1;
    overflow: hidden;
    font-size: 13px;
    color: var(--gov-blue);
    font-weight: 500;
}

.notice-ticker marquee {
    vertical-align: middle;
}

.hero-section {
    background: linear-gradient(135deg, var(--gov-blue) 0%, #244a9e 60%, #1a3c8f 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.hero-title {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--gov-saffron);
}

.hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stat-val {
    font-size: 30px;
    font-weight: 900;
    color: var(--gov-saffron);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    self-align: stretch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gov-saffron);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 4px 15px rgba(244, 145, 74, .4);
}

.btn-hero-primary:hover {
    background: var(--gov-orange);
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 6px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .9);
}

.hero-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hero-card-item:last-child {
    border-bottom: none;
}

.hci-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hci-title {
    font-size: 13px;
    font-weight: 700;
}

.hci-sub {
    font-size: 11.5px;
    opacity: .7;
}

.portals-section {
    background: #fff;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-mark {
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--gov-orange);
    border-radius: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--gov-blue);
    margin: 0 0 8px;
}

.section-sub {
    font-size: 14px;
    color: var(--gov-muted);
    margin: 0;
}

.portal-card {
    background: #fff;
    border: 2px solid var(--gov-border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all .25s;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.portal-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--pc-color, var(--gov-blue));
    transform: scaleX(0);
    transition: transform .3s;
}

.portal-card:hover {
    border-color: var(--pc-color, var(--gov-blue));
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.portal-card:hover::after {
    transform: scaleX(1);
}

.portal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    background: color-mix(in srgb, var(--pc-color, var(--gov-blue)) 15%, transparent);
}

.portal-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gov-text);
    margin-bottom: 6px;
}

.portal-desc {
    font-size: 13px;
    color: var(--gov-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pc-color, var(--gov-blue));
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: filter .2s;
}

.portal-btn:hover {
    filter: brightness(.9);
    color: #fff;
}

.features-section {
    background: var(--gov-lightbg);
    padding: 60px 0;
    border-top: 1px solid var(--gov-border);
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid var(--gov-border);
    height: 100%;
    transition: box-shadow .2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gov-blue);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--gov-muted);
    line-height: 1.6;
    margin: 0;
}

.steps-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid var(--gov-border);
}

.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gov-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gov-text);
    margin-bottom: 4px;
}

.step-sub {
    font-size: 13px;
    color: var(--gov-muted);
    line-height: 1.5;
}

.step-connector {
    width: 2px;
    background: var(--gov-border);
    margin: 8px 0 8px 19px;
    height: 24px;
}

.notices-section {
    background: var(--gov-lightbg);
    padding: 60px 0;
    border-top: 1px solid var(--gov-border);
}

.notice-item {
    background: #fff;
    border-left: 4px solid var(--gov-blue);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notice-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gov-red);
    flex-shrink: 0;
    margin-top: 5px;
}

.notice-text {
    font-size: 13.5px;
    color: var(--gov-text);
}

.notice-date {
    font-size: 11px;
    color: var(--gov-muted);
    margin-top: 2px;
}

.gov-footer {
    background: var(--gov-blue);
    color: rgba(255, 255, 255, .85);
    padding: 40px 0 0;
    border-top: 4px solid var(--gov-orange);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.footer-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-tag {
    font-size: 11px;
    opacity: .6;
}

.footer-link {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: var(--gov-saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 14px 0;
    margin-top: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, .55);
}

/* --- Standard Info Page Styles --- */
.content-section {
    padding: 60px 0;
    background: var(--gov-bg);
    min-height: calc(100vh - 400px);
}

.content-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gov-border);
}

.content-title-area {
    margin-bottom: 40px;
    text-align: center;
}

.content-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--gov-blue);
}

.content-body h5 {
    color: var(--gov-blue);
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-body h5::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--gov-orange);
    border-radius: 2px;
}

.content-body p,
.content-body li {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--gov-muted);
    margin-bottom: 16px;
}

.content-body ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .content-card {
        padding: 24px 18px;
    }
}

@media (max-width: 991px) {
    .nav-auth-btns {
        display: none;
    }
}

@media (max-width: 767px) {
    .gov-top-strip {
        display: none;
    }

    .portal-name-block h1 {
        font-size: 15px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-val {
        font-size: 24px;
    }

    .gov-nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .gov-nav-links.open {
        display: flex;
    }

    .gov-nav-links li a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-toggler {
        display: block;
    }

    .gov-navbar .container {
        flex-wrap: wrap;
    }

    .notice-bar {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 40px 0 36px;
    }

    .hero-title {
        font-size: 22px;
    }
}

.login-dropdown,
.register-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--gov-border);
    border-radius: 10px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: none;
    padding: 8px 0;
}

.login-dropdown:hover .dropdown-panel,
.register-dropdown:hover .dropdown-panel {
    display: block;
}

.dpanel-header {
    padding: 6px 16px 0;
    font-size: 10px;
    font-weight: 700;
    color: var(--gov-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dpanel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--gov-text);
    font-size: 13px;
    font-weight: 500;
    transition: background .15s;
    border-bottom: 1px solid #f5f5f5;
}

.dpanel-item:last-child {
    border-bottom: none;
}

.dpanel-item:hover {
    background: var(--gov-lightbg);
    color: var(--gov-blue);
}

.dpanel-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--gov-orange);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--gov-orange)
    }
}

.fab-stack {
    position: fixed !important;
    right: 20px !important;
    bottom: 24px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 12px !important;
}

.fab-btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    outline: none !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-md) !important;
    transition: all .3s cubic-bezier(.4, 0, .2, 1) !important;
    font-family: var(--font-main) !important;
}

.fab-btn .fab-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    transition: background .3s ease !important;
}

.fab-btn .fab-label {
    max-width: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .3px !important;
    color: #fff !important;
    padding: 0 !important;
    transition: max-width .35s ease, padding .35s ease !important;
}

.fab-btn:hover .fab-label {
    max-width: 140px !important;
    padding: 0 14px 0 0 !important;
}

.fab-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.fab-btn.fab-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
}

.fab-btn.fab-wa:hover {
    background: linear-gradient(135deg, #20c45e 0%, #0f7a6e 100%) !important;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4) !important;
}

.fab-btn.fab-wa::after {
    content: '' !important;
    position: absolute !important;
    top: 5px !important;
    right: 5px !important;
    width: 10px !important;
    height: 10px !important;
    background: #7cf5a5 !important;
    border: 2px solid #128C7E !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 0 rgba(124, 245, 165, .7) !important;
    animation: fab-ping 2s infinite !important;
}

@keyframes fab-ping {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 245, 165, .7);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(124, 245, 165, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 245, 165, 0);
    }
}

.fab-btn.fab-help {
    background: var(--gov-blue) !important;
    border-left: 3px solid var(--gov-orange) !important;
}

.fab-btn.fab-help:hover {
    background: #244a9e !important;
    box-shadow: 0 6px 24px rgba(26, 60, 143, 0.4) !important;
}

.fab-scroll-top {
    width: 48px !important;
    height: 48px !important;
    background: var(--gov-saffron) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: var(--shadow-md) !important;
    border-bottom: 3px solid var(--gov-orange) !important;
    transition: all .3s ease !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    outline: none !important;
    padding: 0 !important;
    align-self: flex-end !important;
    overflow: hidden !important;
    font-size: 18px !important;
}

.fab-scroll-top.visible {
    display: flex !important;
}

.fab-scroll-top:hover {
    background: var(--gov-orange) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 24px rgba(244, 145, 74, .4) !important;
}

.fab-scroll-top:hover i {
    animation: bounce-arrow .8s infinite !important;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 767px) {
    .fab-stack {
        right: 14px !important;
        bottom: 18px !important;
        gap: 10px !important;
    }

    .fab-btn .fab-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 19px !important;
    }

    .fab-scroll-top {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}/* " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " 

   AUTH-THEME.CSS    Shared Government Portal Auth Styles

   Login · Student Register · Institute Register

   " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " "  */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');



*,

*::before,

*::after {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



:root {

    --gov-blue: #1a3c8f;

    --gov-blue-dk: #122d6e;

    --gov-orange: #e07b00;

    --gov-saffron: #f4914a;

    --gov-green: #10b981;

    --gov-red: #ef4444;

    --gov-bg: #f5f6fa;

    --gov-border: #d1d8e6;

    --gov-text: #1a1a2e;

    --gov-muted: #5a6373;

    --gov-surface: #fff;

}



body {

    font-family: 'Noto Sans', Arial, sans-serif;

    background: var(--gov-bg);

    min-height: 100vh;

    color: var(--gov-text);

}



/*        PAGE LOADER        */

#pageLoader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    background: var(--gov-blue);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    transition: opacity .5s ease, visibility .5s ease;

}



#pageLoader.hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}



.loader-emblem {

    position: relative;

    width: 90px;

    height: 90px;

}



.loader-ring {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 3px solid transparent;

}



.loader-ring-1 {

    border-top-color: var(--gov-saffron);

    border-right-color: var(--gov-saffron);

    animation: spin1 1s linear infinite;

}



.loader-ring-2 {

    inset: 8px;

    border-bottom-color: rgba(255, 255, 255, .4);

    border-left-color: rgba(255, 255, 255, .4);

    animation: spin1 .7s linear infinite reverse;

}



.loader-ring-3 {

    inset: 18px;

    border-top-color: rgba(255, 255, 255, .7);

    animation: spin1 1.4s linear infinite;

}



.loader-center {

    position: absolute;

    inset: 28px;

    background: rgba(255, 255, 255, .12);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}



@keyframes spin1 {

    to {

        transform: rotate(360deg);

    }

}



.loader-text {

    font-size: 14px;

    font-weight: 700;

    color: rgba(255, 255, 255, .85);

    letter-spacing: 1.5px;

    text-transform: uppercase;

}



.loader-bar-wrap {

    width: 200px;

    height: 3px;

    background: rgba(255, 255, 255, .15);

    border-radius: 99px;

    overflow: hidden;

}



.loader-bar {

    height: 100%;

    width: 0%;

    background: linear-gradient(90deg, var(--gov-saffron), #fff, var(--gov-saffron));

    background-size: 200% 100%;

    border-radius: 99px;

    animation: barFill 1.6s ease forwards, shimmer 1.2s linear infinite;

}



@keyframes barFill {

    to {

        width: 100%;

    }

}



@keyframes shimmer {

    to {

        background-position: -200% 0;

    }

}



/*        TOP GOV STRIP        */

.gov-strip {

    background: var(--gov-blue);

    color: rgba(255, 255, 255, .82);

    font-size: 11px;

    padding: 5px 0;

    border-bottom: 3px solid var(--gov-saffron);

    font-family: 'Noto Sans', sans-serif;

}



/*        HEADER        */

.gov-header {

    background: #fff;

    border-bottom: 3px solid var(--gov-orange);

    padding: 12px 0;

}



.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

}



.logo-block {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: inherit;

}



.logo-img {

    height: 50px;

    width: 50px;

    object-fit: contain;

}



.logo-placeholder {

    height: 50px;

    width: 50px;

    border-radius: 50%;

    background: var(--gov-blue);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 800;

    border: 2px solid var(--gov-saffron);

    flex-shrink: 0;

}



.logo-text h1 {

    font-size: 16px;

    font-weight: 800;

    color: var(--gov-blue);

    margin: 0;

}



.logo-text p {

    font-size: 11px;

    color: var(--gov-muted);

    margin: 0;

}



.back-link {

    font-size: 13px;

    color: var(--gov-blue);

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 6px;

    font-weight: 600;

}



.back-link:hover {

    color: var(--gov-orange);

}



/*        PAGE SPLIT LAYOUT        */

.auth-page {

    display: flex;

    align-items: stretch;

    min-height: calc(100vh - 108px);

}



/*        LEFT INFO PANEL        */

.auth-left {

    width: 270px;

    flex-shrink: 0;

    background: var(--gov-blue);

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    padding: 40px 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    border-right: 3px solid var(--gov-saffron);

    position: sticky;

    top: 0;

    align-self: flex-start;

    min-height: calc(100vh - 108px);

}



.left-icon {

    font-size: 52px;

    margin-bottom: 18px;

    text-align: center;

    line-height: 1;

}



.left-title {

    font-size: 17px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 8px;

    text-align: center;

}



.left-sub {

    font-size: 12px;

    color: rgba(255, 255, 255, .68);

    line-height: 1.65;

    margin-bottom: 30px;

    text-align: center;

}



/* Step indicators */

.auth-step {

    display: flex;

    align-items: center;

    gap: 11px;

    width: 100%;

    margin-bottom: 0;

    cursor: pointer;

    padding: 6px 4px;

    border-radius: 8px;

    transition: background .2s;

}



.auth-step:hover {

    background: rgba(255, 255, 255, .07);

}



.as-num {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    font-size: 12px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 255, 255, .12);

    color: rgba(255, 255, 255, .6);

    border: 2px solid rgba(255, 255, 255, .2);

    transition: all .25s;

}



.as-label {

    font-size: 12.5px;

    color: rgba(255, 255, 255, .6);

    font-weight: 600;

    transition: color .25s;

    line-height: 1.3;

}



.step-conn {

    width: 2px;

    height: 16px;

    background: rgba(255, 255, 255, .12);

    margin: 2px 0 2px 13px;

}



.auth-step.active .as-num {

    background: var(--gov-saffron);

    color: #fff;

    border-color: var(--gov-saffron);

    box-shadow: 0 0 0 3px rgba(244, 145, 74, .25);

}



.auth-step.active .as-label {

    color: #fff;

}



.auth-step.done .as-num {

    background: var(--gov-green);

    color: #fff;

    border-color: var(--gov-green);

}



.auth-step.done .as-label {

    color: rgba(255, 255, 255, .8);

}



.left-footer-info {

    margin-top: auto;

    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, .12);

    width: 100%;

}



.lfi-item {

    font-size: 11.5px;

    color: rgba(255, 255, 255, .52);

    margin-bottom: 6px;

    display: flex;

    align-items: center;

    gap: 8px;

}



/*        RIGHT FORM PANEL        */

.auth-right {

    flex: 1;

    padding: 32px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    background: var(--gov-bg);

    overflow-x: hidden;

}



.auth-right-inner {

    width: 100%;

    max-width: 680px;

}



/*        FORM STEP SECTIONS        */

.step-sec {

    display: none;

}



.step-sec.active {

    display: block;

    animation: fadeInUp .3s ease;

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(12px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/*        FORM CARD        */

.form-card {

    background: var(--gov-surface);

    border-radius: 12px;

    border: 1px solid var(--gov-border);

    border-top: 4px solid var(--gov-blue);

    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);

    overflow: hidden;

    margin-bottom: 16px;

}



.form-card-head {

    padding: 16px 22px;

    border-bottom: 1px solid var(--gov-border);

    display: flex;

    align-items: center;

    gap: 12px;

    background: #fafbfc;

}



.fch-icon {

    width: 38px;

    height: 38px;

    border-radius: 8px;

    background: rgba(26, 60, 143, .1);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    color: var(--gov-blue);

    flex-shrink: 0;

}



.fch-title {

    font-size: 14.5px;

    font-weight: 800;

    color: var(--gov-text);

}



.fch-sub {

    font-size: 11.5px;

    color: var(--gov-muted);

    margin: 0;

}



.form-card-body {

    padding: 22px;

}



/*        INPUTS        */

.f-label {

    font-size: 12.5px;

    font-weight: 700;

    color: var(--gov-text);

    margin-bottom: 5px;

    display: block;

}



.req {

    color: #dc2626;

    margin-left: 2px;

}



.f-wrap {

    position: relative;

}



.f-icon {

    position: absolute;

    left: 12px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--gov-muted);

    font-size: 13px;

    pointer-events: none;

    z-index: 1;

}



.f-icon-top {

    top: 13px;

    transform: none;

}



.f-inp {

    width: 100%;

    padding: 10px 12px 10px 36px;

    border: 1.5px solid var(--gov-border);

    border-radius: 8px;

    font-size: 13.5px;

    color: var(--gov-text);

    background: #fff;

    outline: none;

    font-family: 'Noto Sans', sans-serif;

    transition: border-color .18s, box-shadow .18s;

}



.f-inp:focus {

    border-color: var(--gov-blue);

    box-shadow: 0 0 0 3px rgba(26, 60, 143, .08);

}



.f-inp.no-icon {

    padding-left: 12px;

}



.f-inp.pw-inp {

    padding-right: 42px;

}



textarea.f-inp {

    padding-left: 12px;

    resize: vertical;

    min-height: 68px;

}



select.f-inp {

    cursor: pointer;

}



.f-hint {

    font-size: 11.5px;

    color: var(--gov-muted);

    margin-top: 4px;

}



.pw-toggle-btn {

    position: absolute;

    right: 11px;

    top: 50%;

    transform: translateY(-50%);

    background: none;

    border: none;

    cursor: pointer;

    color: var(--gov-muted);

    font-size: 13px;

    padding: 2px;

}



/*        PASSWORD STRENGTH        */

.pw-strength-bar-wrap {

    height: 4px;

    background: #e2e8f0;

    border-radius: 99px;

    overflow: hidden;

    margin-top: 6px;

}



.pw-strength-bar {

    height: 100%;

    width: 0%;

    border-radius: 99px;

    transition: width .3s, background .3s;

}



.pw-strength-lbl {

    font-size: 11px;

    margin-top: 3px;

}



/*        INFO BOX        */

.info-note {

    background: #eff6ff;

    border: 1px solid #bfdbfe;

    border-radius: 8px;

    padding: 11px 14px;

    font-size: 12.5px;

    color: #1e40af;

}



.warn-note {

    background: #fffbeb;

    border: 1px solid #fde68a;

    border-radius: 8px;

    padding: 11px 14px;

    font-size: 12.5px;

    color: #92400e;

}



/*        PHOTO UPLOAD        */

.photo-zone {

    border: 2px dashed var(--gov-border);

    border-radius: 10px;

    padding: 18px;

    text-align: center;

    cursor: pointer;

    transition: all .2s;

    position: relative;

    flex: 1;

}



.photo-zone:hover {

    border-color: var(--gov-blue);

    background: #f0f4ff;

}



.photo-zone input[type=file] {

    position: absolute;

    inset: 0;

    opacity: 0;

    cursor: pointer;

    width: 100%;

    height: 100%;

}



.photo-preview-img {

    width: 75px;

    height: 80px;

    object-fit: cover;

    border-radius: 8px;

    border: 2px solid var(--gov-border);

    display: none;

}



/*        BUTTONS        */

.btn-auth {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 22px;

    border-radius: 8px;

    border: none;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    font-family: 'Noto Sans', sans-serif;

    transition: filter .18s, transform .1s, box-shadow .18s;

    text-decoration: none;

    line-height: 1;

}



.btn-auth:hover:not(:disabled) {

    filter: brightness(.9);

    transform: translateY(-1px);

    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);

}



.btn-auth:disabled {

    opacity: .6;

    cursor: not-allowed;

    transform: none;

    filter: none;

}



.btn-blue {

    background: var(--gov-blue);

    color: #fff;

}



.btn-green {

    background: var(--gov-green);

    color: #fff;

}



.btn-outline {

    background: #fff;

    color: var(--gov-blue);

    border: 2px solid var(--gov-blue);

}



.btn-outline:hover {

    background: #f0f4ff;

}



.btn-orange {

    background: var(--gov-orange);

    color: #fff;

}



/*        ERROR BOX        */

.error-box {

    background: #fde8e8;

    border: 1px solid #f5a5a5;

    border-radius: 10px;

    padding: 14px 16px;

    color: #a91d27;

    font-size: 13px;

    margin-bottom: 18px;

}



.error-box ul {

    margin: 6px 0 0 16px;

    padding: 0;

}



/*        SUCCESS CARD        */

.success-card {

    background: var(--gov-surface);

    border-radius: 16px;

    padding: 48px 32px;

    text-align: center;

    border: 1px solid var(--gov-border);

    border-top: 4px solid var(--gov-green);

    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);

}



.success-icon-wrap {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: #dcfce7;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    font-size: 2.4rem;

}



/*        BOTTOM LINK BAR        */

.form-link-bar {

    text-align: center;

    font-size: 13px;

    color: var(--gov-muted);

}



.form-link-bar a {

    color: var(--gov-blue);

    font-weight: 700;

    text-decoration: none;

}



.form-link-bar a:hover {

    color: var(--gov-orange);

}



.form-link-bar .sep {

    color: var(--gov-border);

    margin: 0 8px;

}



/*        FOOTER        */

.auth-footer {

    text-align: center;

    font-size: 11.5px;

    color: var(--gov-muted);

    padding: 14px;

    background: #fff;

    border-top: 1px solid var(--gov-border);

}



/*        RESPONSIVE        */

@media (max-width: 767px) {

    .auth-left {

        display: none !important;

    }



    .auth-right {

        padding: 14px 10px;

    }



    .form-card-body {

        padding: 16px;

    }



    .auth-page {

        min-height: unset;

    }

}


/ *   - - -   U n i f i e d   A u t h   P a g e   S t y l e s   - - -   * /  
 . a u t h - p a g e   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   s t r e t c h ;  
         m i n - h e i g h t :   1 0 0 v h ;  
         b a c k g r o u n d :   v a r ( - - g o v - b g ) ;  
 }  
  
 . a u t h - l e f t   {  
         w i d t h :   3 6 0 p x ;  
         b a c k g r o u n d :   v a r ( - - g o v - b l u e ) ;  
         b a c k g r o u n d - i m a g e :   u r l ( ' d a t a : i m a g e / s v g + x m l , % 3 C s v g   w i d t h = \ ' 6 0 \ '   h e i g h t = \ ' 6 0 \ '   v i e w B o x = \ ' 0   0   6 0   6 0 \ '   x m l n s = \ ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g \ ' % 3 E % 3 C g   f i l l = \ ' n o n e \ '   f i l l - r u l e = \ ' e v e n o d d \ ' % 3 E % 3 C g   f i l l = \ ' % 2 3 f f f f f f \ '   f i l l - o p a c i t y = \ ' 0 . 0 4 \ ' % 3 E % 3 C p a t h   d = \ ' M 3 6   3 4 v - 4 h - 2 v 4 h - 4 v 2 h 4 v 4 h 2 v - 4 h 4 v - 2 h - 4 z m 0 - 3 0 V 0 h - 2 v 4 h - 4 v 2 h 4 v 4 h 2 V 6 h 4 V 4 h - 4 z M 6   3 4 v - 4 H 4 v 4 H 0 v 2 h 4 v 4 h 2 v - 4 h 4 v - 2 H 6 z M 6   4 V 0 H 4 v 4 H 0 v 2 h 4 v 4 h 2 V 6 h 4 V 4 H 6 z \ ' / % 3 E % 3 C / g % 3 E % 3 C / g % 3 E % 3 C / s v g % 3 E ' ) ;  
         p a d d i n g :   6 0 p x   4 0 p x ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         b o r d e r - r i g h t :   4 p x   s o l i d   v a r ( - - g o v - s a f f r o n ) ;  
         c o l o r :   # f f f ;  
         f l e x - s h r i n k :   0 ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . a u t h - l e f t   . l e f t - i c o n   {  
         f o n t - s i z e :   6 4 p x ;  
         m a r g i n - b o t t o m :   2 4 p x ;  
         f i l t e r :   d r o p - s h a d o w ( 0   4 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ) ;  
 }  
  
 . a u t h - l e f t   . l e f t - t i t l e   {  
         f o n t - s i z e :   2 4 p x ;  
         f o n t - w e i g h t :   8 0 0 ;  
         m a r g i n - b o t t o m :   1 2 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . a u t h - l e f t   . l e f t - s u b   {  
         f o n t - s i z e :   1 4 p x ;  
         o p a c i t y :   0 . 8 ;  
         l i n e - h e i g h t :   1 . 7 ;  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - b o t t o m :   3 2 p x ;  
 }  
  
 . a u t h - r i g h t   {  
         f l e x :   1 ;  
         p a d d i n g :   4 0 p x   2 0 p x ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
         o v e r f l o w - y :   a u t o ;  
 }  
  
 . a u t h - r i g h t - i n n e r   {  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   6 5 0 p x ;  
         m a r g i n :   a u t o ;  
 }  
  
 . a u t h - f o r m - c a r d   {  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g o v - b o r d e r ) ;  
         b o r d e r - t o p :   5 p x   s o l i d   v a r ( - - g o v - b l u e ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;  
         p a d d i n g :   4 0 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
         w i d t h :   1 0 0 % ;  
 }  
  
 . a u t h - c a r d - h e a d   {  
         m a r g i n - b o t t o m :   3 2 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . a u t h - c a r d - t i t l e   {  
         f o n t - s i z e :   2 6 p x ;  
         f o n t - w e i g h t :   8 0 0 ;  
         c o l o r :   v a r ( - - g o v - b l u e ) ;  
         m a r g i n - b o t t o m :   8 p x ;  
 }  
  
 . a u t h - c a r d - s u b   {  
         f o n t - s i z e :   1 5 p x ;  
         c o l o r :   v a r ( - - g o v - m u t e d ) ;  
 }  
  
 . r o l e - b a d g e   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         p a d d i n g :   4 p x   1 2 p x ;  
         b o r d e r - r a d i u s :   9 9 p x ;  
         f o n t - s i z e :   1 2 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   1 6 p x ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   {  
         . a u t h - l e f t   {  
                 w i d t h :   3 0 0 p x ;  
                 p a d d i n g :   4 0 p x   2 5 p x ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   {  
         . a u t h - p a g e   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 m i n - h e i g h t :   u n s e t ;  
         }  
  
         . a u t h - l e f t   {  
                 w i d t h :   1 0 0 % ;  
                 b o r d e r - r i g h t :   n o n e ;  
                 b o r d e r - b o t t o m :   4 p x   s o l i d   v a r ( - - g o v - s a f f r o n ) ;  
                 p a d d i n g :   4 0 p x   2 0 p x ;  
                 h e i g h t :   a u t o ;  
         }  
  
         . a u t h - r i g h t   {  
                 p a d d i n g :   4 0 p x   1 5 p x ;  
                 a l i g n - i t e m s :   c e n t e r ;  
         }  
  
         . a u t h - f o r m - c a r d   {  
                 p a d d i n g :   3 0 p x   2 0 p x ;  
         }  
 }  
  
 . l f i - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 2 p x ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 ) ;  
         f o n t - s i z e :   1 3 . 5 p x ;  
         m a r g i n - b o t t o m :   1 4 p x ;  
 }  
  
 . l i i - i c o n   {  
         w i d t h :   3 4 p x ;  
         h e i g h t :   3 4 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 2 ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - s i z e :   1 6 p x ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 / *   - - -   A u t h   C o m p o n e n t   S t y l e s   - - -   * /  
 . r o l e - p i l l s   {  
         d i s p l a y :   f l e x ;  
         g a p :   1 0 p x ;  
         m a r g i n - b o t t o m :   2 5 p x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . r o l e - p i l l   {  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 . 5 p x   s o l i d   v a r ( - - g o v - b o r d e r ) ;  
         p a d d i n g :   1 0 p x   1 8 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         c u r s o r :   p o i n t e r ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   8 p x ;  
         f o n t - s i z e :   1 4 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - g o v - m u t e d ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
 }  
  
 . r o l e - p i l l : h o v e r   {  
         b o r d e r - c o l o r :   v a r ( - - g o v - b l u e ) ;  
         b a c k g r o u n d :   r g b a ( 2 6 ,   6 0 ,   1 4 3 ,   0 . 0 2 ) ;  
 }  
  
 . r o l e - p i l l . a c t i v e   {  
         b a c k g r o u n d :   v a r ( - - r o l e - c o l o r ,   v a r ( - - g o v - b l u e ) ) ;  
         b o r d e r - c o l o r :   v a r ( - - r o l e - c o l o r ,   v a r ( - - g o v - b l u e ) ) ;  
         c o l o r :   # f f f ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
 }  
  
 . r p - i c o n   {  
         f o n t - s i z e :   1 8 p x ;  
 }  
  
 . f i e l d - l a b e l   {  
         d i s p l a y :   b l o c k ;  
         f o n t - s i z e :   1 3 . 5 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - g o v - t e x t ) ;  
         m a r g i n - b o t t o m :   6 p x ;  
 }  
  
 . f i e l d - w r a p   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . f i e l d - i c o n   {  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   1 4 p x ;  
         t o p :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         c o l o r :   v a r ( - - g o v - m u t e d ) ;  
         f o n t - s i z e :   1 4 p x ;  
         z - i n d e x :   2 ;  
 }  
  
 . f o r m - i n p u t   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 2 p x   1 4 p x   1 2 p x   4 2 p x ;  
         b o r d e r :   1 . 5 p x   s o l i d   v a r ( - - g o v - b o r d e r ) ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         f o n t - s i z e :   1 4 . 5 p x ;  
         c o l o r :   v a r ( - - g o v - t e x t ) ;  
         b a c k g r o u n d :   # f f f ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         o u t l i n e :   n o n e ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . f o r m - i n p u t : f o c u s   {  
         b o r d e r - c o l o r :   v a r ( - - g o v - b l u e ) ;  
         b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 2 6 ,   6 0 ,   1 4 3 ,   0 . 1 ) ;  
 }  
  
 . p w - t o g g l e   {  
         p o s i t i o n :   a b s o l u t e ;  
         r i g h t :   1 2 p x ;  
         t o p :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   n o n e ;  
         c o l o r :   v a r ( - - g o v - m u t e d ) ;  
         f o n t - s i z e :   1 5 p x ;  
         c u r s o r :   p o i n t e r ;  
         p a d d i n g :   5 p x ;  
         z - i n d e x :   3 ;  
         t r a n s i t i o n :   c o l o r   0 . 2 s ;  
 }  
  
 . p w - t o g g l e : h o v e r   {  
         c o l o r :   v a r ( - - g o v - b l u e ) ;  
 }  
  
 . c a p t c h a - r o w   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 2 p x ;  
 }  
  
 . c a p t c h a - i m g   {  
         h e i g h t :   4 8 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g o v - b o r d e r ) ;  
         b a c k g r o u n d :   # f a f a f a ;  
 }  
  
 . c a p t c h a - r e f r e s h   {  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         b o r d e r :   1 . 5 p x   s o l i d   v a r ( - - g o v - b o r d e r ) ;  
         b o r d e r - r a d i u s :   8 p x ;  
         b a c k g r o u n d :   # f f f ;  
         c o l o r :   v a r ( - - g o v - m u t e d ) ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
 }  
  
 . c a p t c h a - r e f r e s h : h o v e r   {  
         b o r d e r - c o l o r :   v a r ( - - g o v - b l u e ) ;  
         c o l o r :   v a r ( - - g o v - b l u e ) ;  
 }  
  
 . c a p t c h a - i n p u t   {  
         f l e x :   1 ;  
         p a d d i n g - l e f t :   1 4 p x   ! i m p o r t a n t ;  
 }  
  
 . b t n - l o g i n   {  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d :   v a r ( - - r o l e - c o l o r ,   v a r ( - - g o v - b l u e ) ) ;  
         c o l o r :   # f f f ;  
         b o r d e r :   n o n e ;  
         p a d d i n g :   1 4 p x ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         f o n t - s i z e :   1 6 p x ;  
         f o n t - w e i g h t :   8 0 0 ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   1 0 p x ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
         m a r g i n - t o p :   1 0 p x ;  
 }  
  
 . b t n - l o g i n : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   0   6 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         o p a c i t y :   0 . 9 5 ;  
 }  
  
 . b t n - l o g i n : d i s a b l e d   {  
         o p a c i t y :   0 . 7 ;  
         c u r s o r :   n o t - a l l o w e d ;  
         t r a n s f o r m :   n o n e ;  
         b o x - s h a d o w :   n o n e ;  
 }  
  
 . f o r m - l i n k s   {  
         t e x t - a l i g n :   c e n t e r ;  
         f o n t - s i z e :   1 3 . 5 p x ;  
         c o l o r :   v a r ( - - g o v - m u t e d ) ;  
         m a r g i n - t o p :   2 4 p x ;  
         p a d d i n g - t o p :   2 0 p x ;  
         b o r d e r - t o p :   1 p x   d a s h e d   v a r ( - - g o v - b o r d e r ) ;  
 }  
  
 . f o r m - l i n k s   a   {  
         c o l o r :   v a r ( - - g o v - b l u e ) ;  
         f o n t - w e i g h t :   7 0 0 ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
 }  
  
 . f o r m - l i n k s   a : h o v e r   {  
         t e x t - d e c o r a t i o n :   u n d e r l i n e ;  
 }  
  
 . f i e l d - e r r o r   {  
         c o l o r :   # d c 2 6 2 6 ;  
         f o n t - s i z e :   1 2 p x ;  
         m a r g i n - t o p :   4 p x ;  
         d i s p l a y :   n o n e ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   5 p x ;  
 }  
  
 . f i e l d - e r r o r . s h o w   {  
         d i s p l a y :   f l e x ;  
 }  
  
 / *   P h o t o   U p l o a d   f o r   R e g i s t r a t i o n   * /  
 . p h o t o - z o n e   {  
         f l e x :   1 ;  
         h e i g h t :   9 0 p x ;  
         b o r d e r :   2 p x   d a s h e d   v a r ( - - g o v - b o r d e r ) ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         t e x t - a l i g n :   c e n t e r ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
 }  
  
 . p h o t o - z o n e : h o v e r   {  
         b o r d e r - c o l o r :   v a r ( - - g o v - b l u e ) ;  
         b a c k g r o u n d :   r g b a ( 2 6 ,   6 0 ,   1 4 3 ,   0 . 0 2 ) ;  
 }  
  
 . p h o t o - z o n e   i n p u t [ t y p e = f i l e ]   {  
         p o s i t i o n :   a b s o l u t e ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         o p a c i t y :   0 ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . p h o t o - p r e v i e w - i m g   {  
         w i d t h :   9 0 p x ;  
         h e i g h t :   9 0 p x ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         o b j e c t - f i t :   c o v e r ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - g o v - b l u e ) ;  
         d i s p l a y :   n o n e ;  
 }  
  
 . p w - s t r e n g t h - b a r - w r a p   {  
         h e i g h t :   5 p x ;  
         b a c k g r o u n d :   # e e e ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         m a r g i n - t o p :   8 p x ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . p w - s t r e n g t h - b a r   {  
         h e i g h t :   1 0 0 % ;  
         w i d t h :   0 ;  
         t r a n s i t i o n :   w i d t h   0 . 3 s ,   b a c k g r o u n d   0 . 3 s ;  
 }  
  
 . p w - s t r e n g t h - l b l   {  
         f o n t - s i z e :   1 1 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - t o p :   4 p x ;  
 }  
  
 . i n f o - n o t e   {  
         b a c k g r o u n d :   # e f f 6 f f ;  
         b o r d e r - l e f t :   4 p x   s o l i d   # 3 b 8 2 f 6 ;  
         p a d d i n g :   1 4 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         f o n t - s i z e :   1 3 p x ;  
         c o l o r :   # 1 e 4 0 a f ;  
         l i n e - h e i g h t :   1 . 5 ;  
 }  
  
 . w a r n - n o t e   {  
         b a c k g r o u n d :   # f f f b e b ;  
         b o r d e r - l e f t :   4 p x   s o l i d   # f 5 9 e 0 b ;  
         p a d d i n g :   1 4 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         f o n t - s i z e :   1 3 p x ;  
         c o l o r :   # 9 2 4 0 0 e ;  
         l i n e - h e i g h t :   1 . 5 ;  
 }  
 
/* --- Horizontal Steps for Auth pages --- */
.auth-step-h { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s; z-index: 2; position: relative; }
.auth-step-h .as-num { width: 45px; height: 45px; border-radius: 50%; background: #fff; border: 2px solid var(--gov-border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: var(--gov-muted); transition: all 0.3s; }
.auth-step-h .as-label { font-size: 13.5px; font-weight: 700; color: var(--gov-muted); transition: all 0.3s; }
.auth-step-h.active .as-num { border-color: var(--gov-blue); background: var(--gov-blue); color: #fff; box-shadow: 0 0 0 4px rgba(26,60,143,0.1); }
.auth-step-h.active .as-label { color: var(--gov-blue); }
.auth-step-h.done .as-num { border-color: var(--gov-green); background: var(--gov-green); color: #fff; }
.auth-step-h.done .as-label { color: var(--gov-green); }
.step-line { width: 60px; height: 2px; background: var(--gov-border); margin-bottom: 25px; flex-shrink: 0; }
.step-line.x-long { width: 100px; }
@media (max-width: 767px) { .step-line { width: 30px; } .auth-step-h .as-num { width: 35px; height: 35px; font-size: 14px; } .auth-step-h .as-label { font-size: 11px; } }

.auth-centered-v2 { position: relative; width: 100%; display: block; overflow: hidden; }
.auth-step-h.done .as-num { border-color: var(--gov-green); background: var(--gov-green); color: #fff; }
.auth-step-h.done .as-label { color: var(--gov-green); }

 / *   C u s t o m   A n i m a t i o n s   * / 
 @ k e y f r a m e s   f l o a t   { 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   } 
 } 
 . a n i m a t e - f l o a t   {   a n i m a t i o n :   f l o a t   3 s   e a s e - i n - o u t   i n f i n i t e ;   } 
 
 @ k e y f r a m e s   b o u n c e - s l o w   { 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 5 % ) ;   a n i m a t i o n - t i m i n g - f u n c t i o n :   c u b i c - b e z i e r ( 0 . 8 ,   0 ,   1 ,   1 ) ;   } 
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   a n i m a t i o n - t i m i n g - f u n c t i o n :   c u b i c - b e z i e r ( 0 ,   0 ,   0 . 2 ,   1 ) ;   } 
 } 
 . a n i m a t e - b o u n c e - s l o w   {   a n i m a t i o n :   b o u n c e - s l o w   2 s   i n f i n i t e ;   } 
  
 