/* ==========================================================================
   AUTHENTICATION ENGINES SEPARATION CANVAS
   ========================================================================== */
.split-viewport-bg {
    background: radial-gradient(circle at 0% 0%, var(--brand-royal-blue) 0%, var(--brand-dark-void) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-wrapper-mainframe {
    width: 100%;
    max-width: 480px;
}

.login-glass-card {
    background: rgba(3, 15, 41, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.login-portal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-luxury-gold);
    pointer-events: none;
}

.input-icon-wrapper .form-control-luxury {
    padding-left: 3.2rem;
}

.login-utilities-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.checkbox-wrapper-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-white-muted);
    cursor: pointer;
}

.border-red-alert-glow {
    border-color: rgba(231, 76, 60, 0.25);
}

/* ==========================================================================
   AUTOMATED ADMISSION REGISTRATION WIZARD
   ========================================================================== */
.wizard-mainframe-container {
    width: 100%;
    max-width: 1000px;
}

.wizard-steps-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}

.step-node {
    opacity: 0.4;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-stack-display);
}

.step-node.active {
    opacity: 1;
    color: var(--brand-luxury-gold);
}

.step-panel {
    display: none;
}

.step-panel.active-panel {
    display: block;
    animation: panelSlideIn 0.5s ease forwards;
}

@keyframes panelSlideIn {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-control-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
}