:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #6c63ff;
    --accent: #00c6ff;
    --white: #ffffff;
    --light: rgba(255, 255, 255, 0.75);
    --glass: rgba(255, 255, 255, 0.16);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-soft: 0 10px 30px rgba(13, 110, 253, 0.15);
    --text-main: #17324d;
    --text-soft: #5e748a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.35),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255, 255, 255, 0.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #89f7fe 0%,
            #66a6ff 35%,
            #4a7dff 70%,
            #6c63ff 100%
        );
    position: relative;
    color: var(--text-main);
}

/* Floating background shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.25;
    animation: floatShape 10s ease-in-out infinite;
    z-index: 0;
}

.shape-1 {
    width: 260px;
    height: 260px;
    background: #ffffff;
    top: 8%;
    left: 6%;
}

.shape-2 {
    width: 340px;
    height: 340px;
    background: #9cd8ff;
    bottom: 12%;
    right: 4%;
    animation-delay: 1.5s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: #c9b6ff;
    top: 60%;
    left: 12%;
    animation-delay: 2.5s;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(12px);
    }
}

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 100px;
    filter: blur(1px);
    z-index: 0;
    animation: moveClouds linear infinite;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
}

.cloud-1 {
    width: 120px;
    height: 40px;
    top: 18%;
    left: -150px;
    animation-duration: 35s;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 15px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -28px;
    right: 15px;
}

.cloud-2 {
    width: 180px;
    height: 55px;
    top: 30%;
    left: -220px;
    animation-duration: 45s;
    animation-delay: 8s;
    opacity: 0.5;
}

.cloud-2::before {
    width: 70px;
    height: 70px;
    top: -30px;
    left: 20px;
}

.cloud-2::after {
    width: 80px;
    height: 80px;
    top: -35px;
    right: 22px;
}

.cloud-3 {
    width: 140px;
    height: 45px;
    bottom: 20%;
    left: -180px;
    animation-duration: 40s;
    animation-delay: 4s;
    opacity: 0.45;
}

.cloud-3::before {
    width: 55px;
    height: 55px;
    top: -22px;
    left: 16px;
}

.cloud-3::after {
    width: 65px;
    height: 65px;
    top: -28px;
    right: 14px;
}

@keyframes moveClouds {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Plane animation */
.plane-wrap {
    position: absolute;
    top: 14%;
    left: -80px;
    z-index: 0;
    animation: flyAcross 18s linear infinite;
    opacity: 0.9;
}

.plane-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    transform: rotate(18deg);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trail {
    position: absolute;
    width: 140px;
    height: 3px;
    left: -130px;
    top: 16px;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );
    border-radius: 50px;
}

@keyframes flyAcross {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(30vw) translateY(-20px);
    }

    50% {
        transform: translateX(55vw) translateY(10px);
    }

    75% {
        transform: translateX(80vw) translateY(-15px);
    }

    100% {
        transform: translateX(calc(100vw + 120px)) translateY(5px);
    }
}

.main-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-shell {
    width: 100%;
    max-width: 1140px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow);
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-side {
    padding: 3rem;
    min-height: 620px;
    position: relative;
    color: #fff;
    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.05)
        ),
        linear-gradient(
            180deg,
            rgba(13, 110, 253, 0.28),
            rgba(108, 99, 255, 0.22)
        );

    display: flex;
    flex-direction: column;
}

.brand-image-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end; /* pushes image lower */
    justify-content: center;
    margin-top: 1.5rem;
    overflow: hidden;
    margin-left: -28px;
}

.brand-airline-image {
    width: 90%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    animation: floatPlaneImage 4s ease-in-out infinite;
}

@keyframes floatPlaneImage {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991.98px) {
    .brand-image-wrap {
        margin-top: 2rem;
        align-items: center;
    }

    .brand-airline-image {
        max-width: 380px;
    }
}

@media (max-width: 575.98px) {
    .brand-airline-image {
        max-width: 280px;
    }
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: popIn 1.2s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.brand-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1.4rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
}

.brand-text {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    animation: slideInLeft 1.15s ease;
}

.brand-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: slideInLeft 1.25s ease;
}

.stat-card {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-card h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-card span {
    font-size: 0.82rem;
    opacity: 0.85;
}

.flight-route {
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    padding: 1rem 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    animation: floatCard 3.5s ease-in-out infinite;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.route-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.75rem;
}

.route-divider {
    flex: 1;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.55);
    position: relative;
}

.route-divider::after {
    content: "✈";
    position: absolute;
    right: 45%;
    top: -14px;
    font-size: 1rem;
}

.form-side {
    background: rgba(255, 255, 255, 0.92);
    padding: 3rem;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 430px;
    animation: slideInRight 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.22);
    }

    50% {
        box-shadow: 0 14px 40px rgba(108, 99, 255, 0.28);
    }
}

.logo-wrap i {
    font-size: 1.8rem;
}

.subtitle {
    color: var(--text-soft);
    margin-bottom: 1.75rem;
    font-size: 0.96rem;
}

.material-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-control,
.form-select {
    height: 56px;
    border-radius: 16px;
    border: 1px solid #d8e3f0;
    background: #fff;
    padding: 1rem 1rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.03);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(13, 110, 253, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.12);
    transform: translateY(-1px);
}

.form-floating > label {
    color: #6c7a89;
    padding-left: 1rem;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #7a8ea8;
    z-index: 5;
    font-size: 1rem;
}

.password-toggle {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.btn-flight {
    position: relative;
    overflow: hidden;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.25);
    transition: all 0.3s ease;
}

.btn-flight:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(13, 110, 253, 0.32);
}

.btn-flight:active {
    transform: translateY(0);
}

.btn-flight .plane-mini {
    margin-left: 0.45rem;
    transition: transform 0.3s ease;
}

.btn-flight:hover .plane-mini {
    transform: translateX(4px);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.link-muted {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.link-muted:hover {
    color: var(--secondary);
}

.divider {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #8aa0b8;
    font-size: 0.88rem;
    margin: 1.25rem 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d8e3f0;
}

.social-btn {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #d8e3f0;
    background: #fff;
    font-weight: 500;
    transition: all 0.25s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: #bfd3e8;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.tiny-note {
    font-size: 0.85rem;
    color: #7d8fa4;
}

.copyright {
    margin-top: 1.3rem;
    text-align: center;
    font-size: 0.82rem;
    color: #91a0b3;
}

@media (max-width: 991.98px) {
    .brand-side {
        min-height: auto;
        padding: 2rem;
    }

    .form-side {
        min-height: auto;
        padding: 2rem;
    }

    .flight-route {
        position: static;
        margin-top: 2rem;
    }

    .brand-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .login-shell {
        border-radius: 24px;
    }

    .brand-side,
    .form-side {
        padding: 1.5rem;
    }

    .brand-title {
        font-size: 2rem;
    }

    .brand-stats {
        grid-template-columns: 1fr;
    }

    .form-control,
    .form-select {
        height: 54px;
    }
}

@media (max-width: 575.98px) {
    .main-wrapper {
        padding: 1rem 0.75rem;
    }

    .logo-wrap {
        width: 64px;
        height: 64px;
    }

    .login-shell {
        border-radius: 20px;
    }
}

.airline-dialog-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 40, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.airline-dialog-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.airline-dialog-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
    transform: translateY(18px) scale(0.96);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.airline-dialog-backdrop.show .airline-dialog-card {
    transform: translateY(0) scale(1);
}

.airline-dialog-header,
.airline-dialog-body,
.airline-dialog-footer {
    position: relative;
    z-index: 1;
}

.airline-dialog-header {
    padding: 1.25rem 1.5rem 0;
}

.dialog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.12);
}

.airline-dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.04);
    color: #5e748a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 5;
}

.airline-dialog-close:hover {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.airline-dialog-body {
    padding: 1.2rem 1.8rem 1rem;
    text-align: center;
}

.dialog-icon-wrap {
    margin: 0 auto 1rem;
    width: 104px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-spinner {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 4px dashed rgba(13, 110, 253, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: airlineSpin 2s linear infinite;
    background: linear-gradient(
        135deg,
        rgba(13, 110, 253, 0.08),
        rgba(108, 99, 255, 0.08)
    );
}

.dialog-spinner i {
    font-size: 2.25rem;
    color: #0d6efd;
    transform: rotate(-20deg);
}

.dialog-static-icon {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.12),
        rgba(255, 193, 7, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(220, 53, 69, 0.12);
}

.dialog-static-icon i {
    font-size: 2.4rem;
    color: #dc3545;
}

.dialog-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #17324d;
    margin-bottom: 0.6rem;
}

.dialog-message {
    color: #5e748a;
    line-height: 1.8;
    margin-bottom: 0.9rem;
    font-size: 0.96rem;
}

.dialog-progress-text {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    font-size: 0.84rem;
    font-weight: 600;
}

.airline-dialog-footer {
    padding: 0 1.8rem 1.6rem;
    display: flex;
    justify-content: center;
}

.btn-dialog-primary {
    min-width: 150px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd, #6c63ff);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.22);
    transition: all 0.25s ease;
}

.btn-dialog-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.28);
}

.airline-dialog-backdrop.loading-mode .airline-dialog-close,
.airline-dialog-backdrop.loading-mode .airline-dialog-footer {
    display: none;
}

.airline-dialog-backdrop.verification-mode .dialog-progress-text {
    background: rgba(220, 53, 69, 0.08);
    color: #ffe602;
}

.airline-dialog-backdrop.verification-mode .dialog-badge {
    background: rgba(220, 53, 69, 0.08);
    color: #ffe602;
    border-color: rgba(220, 53, 69, 0.12);
}

.airline-dialog-backdrop.verification-mode .dialog-static-icon {
    background: #fffce2;
    box-shadow: inset 0 0 0 1px rgba(119, 115, 3, 0.12);
}

.airline-dialog-backdrop.verification-mode .dialog-static-icon i {
    color: #ffe602;
}

.airline-dialog-backdrop.error-mode .dialog-progress-text {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.airline-dialog-backdrop.error-mode .dialog-badge {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.12);
}

.airline-dialog-backdrop.success-mode .dialog-badge {
    background: rgba(25, 135, 84, 0.08);
    color: #198754;
    border-color: rgba(25, 135, 84, 0.12);
}

.airline-dialog-backdrop.success-mode .dialog-progress-text {
    background: rgba(25, 135, 84, 0.08);
    color: #198754;
}

.airline-dialog-backdrop.success-mode .dialog-static-icon {
    background: linear-gradient(
        135deg,
        rgba(25, 135, 84, 0.12),
        rgba(13, 110, 253, 0.08)
    );
    box-shadow: inset 0 0 0 1px rgba(25, 135, 84, 0.12);
}

.airline-dialog-backdrop.success-mode .dialog-static-icon i {
    color: #198754;
}

.btn-flight.is-loading {
    opacity: 0.85;
    pointer-events: none;
}

.d-none {
    display: none !important;
}

@keyframes airlineSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   USER TYPE TOGGLE
========================================= */
.user-role-toggle-wrap {
    margin-bottom: 1.25rem;
}

.role-toggle-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e748a;
}

.user-role-toggle {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0.35rem;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(13, 110, 253, 0.08),
        rgba(108, 99, 255, 0.06)
    );
    border: 1px solid rgba(13, 110, 253, 0.1);
    box-shadow: inset 0 1px 4px rgba(13, 110, 253, 0.05);
    overflow: hidden;
    min-height: 62px;
}

.role-toggle-slider {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    width: calc(50% - 0.35rem);
    height: calc(100% - 0.7rem);
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #6c63ff);
    box-shadow: 0 12px 22px rgba(13, 110, 253, 0.18);
    transition:
        transform 0.32s ease,
        background 0.32s ease;
    z-index: 1;
}

.user-role-toggle.faculty-active .role-toggle-slider {
    transform: translateX(100%);
}

.role-toggle-btn {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #5e748a;
    transition:
        color 0.28s ease,
        transform 0.28s ease;
    cursor: pointer;
}

.role-toggle-btn i {
    font-size: 1rem;
}

.role-toggle-btn:hover {
    color: #0d6efd;
}

.role-toggle-btn.active {
    color: #fff;
}

.role-toggle-btn:focus {
    outline: none;
}

.role-toggle-btn:active {
    transform: scale(0.98);
}

.user-role-toggle.faculty-active .role-toggle-btn[data-role="student"] {
    color: #5e748a;
}

.user-role-toggle.faculty-active .role-toggle-btn[data-role="faculty"] {
    color: #0d6efd;
}

.user-role-toggle:not(.faculty-active) .role-toggle-btn[data-role="student"] {
    color: #0d6efd;
}

.user-role-toggle:not(.faculty-active) .role-toggle-btn[data-role="faculty"] {
    color: #5e748a;
}

/* Optional animated glow */
.user-role-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: toggleShine 4s linear infinite;
}

@keyframes toggleShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 575.98px) {
    .user-role-toggle {
        min-height: 58px;
        border-radius: 16px;
    }

    .role-toggle-slider {
        border-radius: 12px;
    }

    .role-toggle-btn {
        height: 48px;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .role-toggle-btn i {
        font-size: 0.95rem;
    }
}
