/* Quantum AI — Modern SMA Authentication UI
   File ini dimuat setelah app.css agar aman sebagai lapisan override.
*/

:root {
    --auth-primary: #5b5df0;
    --auth-primary-dark: #4547d8;
    --auth-secondary: #0ea5e9;
    --auth-accent: #ff8a4c;
    --auth-success: #21b573;
    --auth-ink: #172033;
    --auth-muted: #697386;
    --auth-soft: #f6f7ff;
    --auth-border: #e7e9f5;
    --auth-white: #ffffff;
    --auth-shadow: 0 24px 70px rgba(31, 38, 89, 0.14);
    --auth-radius-xl: 32px;
    --auth-radius-lg: 22px;
    --auth-radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.modern-auth {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--auth-ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(91, 93, 240, 0.15), transparent 30%),
        radial-gradient(circle at 100% 90%, rgba(14, 165, 233, 0.12), transparent 32%),
        #f4f6ff;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

.modern-auth button,
.modern-auth input,
.modern-auth select,
.modern-auth textarea {
    font: inherit;
}

.page-decoration {
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}

.decoration-one {
    top: -90px;
    left: -90px;
    width: 260px;
    height: 260px;
    background: rgba(91, 93, 240, 0.12);
}

.decoration-two {
    right: -120px;
    bottom: -140px;
    width: 330px;
    height: 330px;
    background: rgba(14, 165, 233, 0.1);
}

.decoration-three {
    top: 16%;
    right: 5%;
    width: 90px;
    height: 90px;
    border: 18px solid rgba(255, 138, 76, 0.09);
    background: transparent;
}

.modern-auth .auth-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    width: min(1480px, calc(100% - 36px));
    min-height: calc(100vh - 36px);
    margin: 18px auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--auth-radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--auth-shadow);
    backdrop-filter: blur(18px);
}

.modern-auth .auth-hero-panel {
    position: relative;
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 42px 48px 34px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(24, 30, 80, 0.28), rgba(91, 93, 240, 0.08)),
        linear-gradient(145deg, #3739aa 0%, #5b5df0 48%, #078bcf 100%);
}

.modern-auth .auth-hero-panel::before,
.modern-auth .auth-hero-panel::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    pointer-events: none;
}

.modern-auth .auth-hero-panel::before {
    top: 13%;
    right: -125px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, 0.04),
        0 0 0 92px rgba(255, 255, 255, 0.025);
}

.modern-auth .auth-hero-panel::after {
    bottom: -90px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.07);
}

.hero-topbar,
.hero-content,
.hero-footer {
    position: relative;
    z-index: 2;
}

.hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.modern-auth .brand-row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-logo-wrap {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(11, 19, 76, 0.18);
    backdrop-filter: blur(12px);
}

.brand-logo-wrap img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.modern-auth .brand-row h1 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 0.05em;
}

.modern-auth .brand-row p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.73rem;
    font-weight: 650;
    letter-spacing: 0.12em;
}

.mini-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.mini-guide-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.hero-content {
    max-width: 700px;
    margin: 64px 0 52px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.11);
    font-size: 0.82rem;
    font-weight: 720;
    backdrop-filter: blur(12px);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #74f3b7;
    box-shadow: 0 0 0 6px rgba(116, 243, 183, 0.15);
}

.modern-auth .auth-hero-panel h2 {
    max-width: 760px;
    margin: 25px 0 18px;
    color: #fff;
    font-size: clamp(2.3rem, 4.2vw, 4.65rem);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.modern-auth .auth-hero-panel h2 span {
    position: relative;
    display: inline-block;
    color: #ffd3a8;
}

.modern-auth .auth-hero-panel h2 span::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 7px;
    content: "";
    border-radius: 99px;
    background: rgba(255, 211, 168, 0.32);
    transform: rotate(-1.2deg);
}

.hero-description {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.79);
    font-size: 1rem;
    line-height: 1.8;
}

.role-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.role-badges span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(18, 27, 91, 0.16);
    font-size: 0.8rem;
    font-weight: 700;
}

.modern-auth .feature-grid.compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.feature-card {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    transition: 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
}

.feature-icon {
    display: grid;
    width: 37px;
    height: 37px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
}

.feature-icon.purple {
    background: linear-gradient(145deg, #9f8cff, #7158f4);
}

.feature-icon.cyan {
    background: linear-gradient(145deg, #46d5f7, #0ba0d9);
}

.feature-icon.orange {
    background: linear-gradient(145deg, #ffb36a, #ff7d43);
}

.feature-icon.green {
    background: linear-gradient(145deg, #56d99b, #18a769);
}

.feature-card strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 0.9rem;
}

.feature-card span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    line-height: 1.45;
}

.hero-quote {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 24px;
    padding: 14px 16px;
    border-left: 3px solid #ffd3a8;
    border-radius: 4px 16px 16px 4px;
    background: rgba(16, 22, 79, 0.16);
}

.quote-avatar {
    display: grid;
    width: 41px;
    height: 41px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-quote strong {
    font-size: 0.87rem;
}

.hero-quote p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.75rem;
}

.secure-note {
    color: rgba(255, 255, 255, 0.76);
}

.modern-auth .auth-card {
    position: relative;
    min-width: 0;
    padding: 38px 44px 46px;
    overflow-y: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.98));
}

.mobile-brand {
    display: none;
}

.modern-auth .tabs {
    position: sticky;
    z-index: 10;
    top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 34px;
    padding: 6px;
    border: 1px solid var(--auth-border);
    border-radius: 18px;
    background: rgba(247, 248, 255, 0.9);
    box-shadow: 0 10px 28px rgba(36, 44, 90, 0.07);
    backdrop-filter: blur(14px);
}

.modern-auth .tab {
    display: inline-flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 13px;
    color: #71788c;
    background: transparent;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.modern-auth .tab:hover {
    color: var(--auth-primary);
    background: rgba(91, 93, 240, 0.06);
}

.modern-auth .tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--auth-primary), #7779ff);
    box-shadow: 0 10px 23px rgba(91, 93, 240, 0.28);
}

.modern-auth .tab-panel {
    display: none;
    animation: panelIn 0.32s ease;
}

.modern-auth .tab-panel.active {
    display: block;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.panel-heading {
    margin-bottom: 25px;
}

.panel-heading .eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--auth-primary);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.panel-heading h2 {
    margin: 0;
    color: var(--auth-ink);
    font-size: clamp(1.65rem, 2.7vw, 2.25rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.panel-heading p {
    margin: 9px 0 0;
    color: var(--auth-muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

.modern-auth .stack {
    display: grid;
    gap: 17px;
}

.modern-form label {
    display: grid;
    gap: 8px;
    color: #344054;
    font-size: 0.82rem;
    font-weight: 750;
}

.label-text {
    display: block;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #dfe3ef;
    border-radius: 13px;
    outline: none;
    color: var(--auth-ink);
    background: #fff;
    padding: 12px 14px;
    font-size: 0.91rem;
    box-shadow: 0 2px 0 rgba(39, 45, 77, 0.015);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.modern-form textarea {
    min-height: 102px;
    resize: vertical;
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
    color: #a1a8b8;
}

.modern-form input:hover,
.modern-form select:hover,
.modern-form textarea:hover {
    border-color: #c7cce0;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 4px rgba(91, 93, 240, 0.11);
}

.modern-form input[type="file"] {
    min-height: auto;
    padding: 10px;
    color: #6f7688;
    background: #fbfbff;
}

.modern-form input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 12px;
    border: 0;
    border-radius: 9px;
    color: var(--auth-primary);
    background: rgba(91, 93, 240, 0.1);
    font-weight: 800;
    cursor: pointer;
}

.modern-form label small,
.file-help {
    color: #8b92a3;
    font-size: 0.71rem;
    font-weight: 550;
    line-height: 1.5;
}

.input-wrap {
    position: relative;
    display: block;
}

.input-wrap .input-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    color: #8d94a6;
    font-size: 0.93rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-wrap .input-icon + input {
    padding-left: 42px;
}

.input-wrap input[type="password"],
.input-wrap input[type="text"] {
    padding-right: 47px;
}

.password-toggle {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 8px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: #7b8292;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.18s ease;
}

.password-toggle:hover {
    color: var(--auth-primary);
    background: rgba(91, 93, 240, 0.08);
}

.modern-auth .btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 0.89rem;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.modern-auth .btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
}

.modern-auth .btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--auth-primary), #7476ff);
    box-shadow: 0 13px 28px rgba(91, 93, 240, 0.25);
}

.modern-auth .btn.primary:hover {
    box-shadow: 0 16px 34px rgba(91, 93, 240, 0.34);
}

.modern-auth .btn.secondary {
    color: #fff;
    background: linear-gradient(135deg, #078bcf, #20b7e5);
    box-shadow: 0 13px 28px rgba(14, 165, 233, 0.23);
}

.login-button {
    margin-top: 2px;
}

.public-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 19px;
    padding: 13px 14px;
    border: 1px solid #e6e8f4;
    border-radius: 13px;
    color: #747b8c;
    background: #fafaff;
}

.public-note p {
    margin: 0;
    font-size: 0.77rem;
    line-height: 1.55;
}

.account-help {
    margin-top: 23px;
    color: #777f91;
    text-align: center;
    font-size: 0.83rem;
}

.account-help button {
    border: 0;
    color: var(--auth-primary);
    background: transparent;
    font-weight: 850;
    cursor: pointer;
}

.modern-auth .alert {
    margin-bottom: 18px;
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.modern-auth .alert.success {
    border: 1px solid #bcebd4;
    color: #14734b;
    background: #effcf5;
}

.modern-auth .alert.error,
.modern-auth .alert.danger {
    border: 1px solid #f7c7ca;
    color: #aa2d37;
    background: #fff3f4;
}

.modern-auth .alert.info {
    border: 1px solid #cde6ff;
    color: #21628e;
    background: #f0f8ff;
}

.registration-choice-grid {
    display: grid;
    gap: 14px;
}

.registration-card {
    overflow: hidden;
    border: 1px solid var(--auth-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(41, 48, 88, 0.055);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.registration-card:hover {
    transform: translateY(-1px);
    border-color: #d2d5e8;
    box-shadow: 0 13px 32px rgba(41, 48, 88, 0.085);
}

.registration-card[open] {
    border-color: rgba(91, 93, 240, 0.24);
    box-shadow: 0 18px 38px rgba(91, 93, 240, 0.1);
}

.registration-card summary {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 13px;
    padding: 16px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.registration-card summary::-webkit-details-marker {
    display: none;
}

.registration-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    font-size: 1.35rem;
}

.teacher-card .registration-icon {
    background: #f0efff;
}

.student-card .registration-icon {
    background: #eaf8ff;
}

.parent-card .registration-icon {
    background: #fff2e8;
}

.registration-summary-text {
    display: grid;
    min-width: 0;
    flex: 1;
    gap: 4px;
}

.registration-summary-text strong {
    color: #252d40;
    font-size: 0.92rem;
}

.registration-summary-text small {
    overflow: hidden;
    color: #81889a;
    font-size: 0.73rem;
    font-weight: 560;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-arrow {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    color: #888fa0;
    background: #f5f6fb;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.registration-card[open] .summary-arrow {
    color: var(--auth-primary);
    background: rgba(91, 93, 240, 0.09);
    transform: rotate(180deg);
}

.registration-form-body {
    padding: 2px 18px 20px;
    border-top: 1px solid #eff0f6;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 17px 0;
    color: #5d6475;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-section-title span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--auth-primary);
    font-size: 0.72rem;
}

.modern-auth .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.modern-auth .form-grid .full {
    grid-column: 1 / -1;
}

.modern-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.modern-info strong {
    display: block;
    margin-bottom: 3px;
}

.certificate-visual {
    position: relative;
    display: grid;
    width: 116px;
    height: 116px;
    margin: 5px auto 24px;
    place-items: center;
    border: 1px solid rgba(91, 93, 240, 0.12);
    border-radius: 35px;
    background:
        radial-gradient(circle at 30% 20%, #ffffff, transparent 32%),
        linear-gradient(145deg, #eef0ff, #e3f7ff);
    box-shadow: 0 18px 45px rgba(91, 93, 240, 0.14);
    transform: rotate(-3deg);
}

.certificate-medal {
    font-size: 3.3rem;
    transform: rotate(3deg);
}

.certificate-spark {
    position: absolute;
    color: #ff9b57;
    font-size: 1.25rem;
}

.spark-one {
    top: 11px;
    right: 12px;
}

.spark-two {
    bottom: 14px;
    left: 13px;
    color: var(--auth-primary);
}

.certificate-heading {
    text-align: center;
}

.certificate-form {
    max-width: 420px;
    margin: 0 auto;
}

.certificate-tip {
    display: flex;
    max-width: 420px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 17px auto 0;
    color: #82899a;
    font-size: 0.77rem;
    text-align: center;
}

@media (max-width: 1180px) {
    .modern-auth .auth-shell {
        grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    }

    .modern-auth .auth-hero-panel {
        padding: 38px 36px 30px;
    }

    .modern-auth .auth-hero-panel h2 {
        font-size: clamp(2.25rem, 4.3vw, 3.65rem);
    }

    .modern-auth .feature-grid.compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    body.modern-auth {
        background: #f5f7ff;
    }

    .modern-auth .auth-shell {
        display: block;
        width: min(680px, calc(100% - 24px));
        min-height: auto;
        margin: 12px auto;
        overflow: visible;
        border-radius: 26px;
    }

    .modern-auth .auth-hero-panel {
        display: none;
    }

    .modern-auth .auth-card {
        min-height: calc(100vh - 24px);
        border-radius: 26px;
        padding: 25px 24px 36px;
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 23px;
    }

    .mobile-brand .brand-logo-wrap {
        width: 47px;
        height: 47px;
        border-color: rgba(91, 93, 240, 0.12);
        background: linear-gradient(145deg, #eff0ff, #edf9ff);
        box-shadow: none;
    }

    .mobile-brand strong,
    .mobile-brand span {
        display: block;
    }

    .mobile-brand strong {
        color: #242d43;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
    }

    .mobile-brand span {
        margin-top: 3px;
        color: #8a91a1;
        font-size: 0.72rem;
    }

    .modern-auth .tabs {
        top: 10px;
    }
}

@media (max-width: 580px) {
    .modern-auth .auth-shell {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .modern-auth .auth-card {
        min-height: 100vh;
        padding: 21px 16px 34px;
        border-radius: 0;
    }

    .modern-auth .tabs {
        margin-bottom: 27px;
        border-radius: 15px;
    }

    .modern-auth .tab {
        min-height: 44px;
        gap: 5px;
        padding: 8px 5px;
        font-size: 0.75rem;
    }

    .panel-heading h2 {
        font-size: 1.65rem;
    }

    .modern-auth .form-grid {
        grid-template-columns: 1fr;
    }

    .modern-auth .form-grid .full {
        grid-column: auto;
    }

    .registration-card summary {
        min-height: 76px;
        padding: 13px;
    }

    .registration-icon {
        width: 44px;
        height: 44px;
    }

    .registration-summary-text small {
        white-space: normal;
    }

    .registration-form-body {
        padding: 2px 13px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
