:root {
    --navy: #0f1342;
    --primary: #0846b3;
    --blue: #056fd4;
    --cyan: #078dec;
    --surface: #eaf4ff;
    --page: #f5f9ff;
    --white: #fff;
    --text: #0f1342;
    --muted: #64748b;
    --line: #dce8f7;
    --success: #159d66;
    --warning: #e59a23;
    --danger: #dc4856;
    --shadow: 0 18px 48px rgba(15, 19, 66, 0.1);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    background: var(--page);
    color: var(--text);
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
select,
textarea {
    font: inherit;
}
img {
    max-width: 100%;
}
.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}
.public-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo-full {
    height: 52px;
    width: auto;
    max-width: 165px;
    display: block;
}
.nav-links {
    display: flex;
    gap: 7px;
    align-items: center;
}
.nav-links a {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #3f4962;
}
.nav-links a:hover,
.nav-links a.active {
    background: var(--surface);
    color: var(--primary);
}
.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}
.mobile-menu {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    padding: 9px 11px;
}
.btn {
    border: 0;
    border-radius: 11px;
    padding: 11px 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--navy);
}
.btn-outline {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-light {
    background: var(--surface);
    color: var(--primary);
}
.btn-block {
    width: 100%;
}
.btn-sm {
    padding: 8px 11px;
    font-size: 12px;
}
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        #09287d 47%,
        var(--primary) 75%,
        var(--cyan) 100%
    );
    background-image: linear-gradient(90deg, rgba(15, 19, 66, .92), rgba(8, 70, 179, .68)), var(--cms-hero-image, none);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 92px 0 82px;
}
.hero:before,
.hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero:before {
    width: 500px;
    height: 500px;
    right: -150px;
    top: -220px;
}
.hero:after {
    width: 310px;
    height: 310px;
    right: 120px;
    bottom: -230px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 11px;
}
.hero h1 {
    font-size: 52px;
    line-height: 1.12;
    margin: 18px 0 16px;
    letter-spacing: -0.035em;
}
.hero p {
    font-size: 15px;
    line-height: 1.75;
    color: #dceeff;
    max-width: 650px;
}
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.hero-card {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.23);
}
.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.hero-card h3 {
    margin: 0;
    font-size: 18px;
}
.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 18px 0;
}
.hero-kpi {
    border: 1px solid var(--line);
    background: var(--page);
    border-radius: 13px;
    padding: 12px;
    text-align: center;
}
.hero-kpi strong {
    display: block;
    font-size: 20px;
    color: var(--primary);
}
.hero-kpi span {
    font-size: 9px;
    color: var(--muted);
}
.section {
    padding: 78px 0;
}
.section-white {
    background: #fff;
}
.section-soft {
    background: linear-gradient(180deg, #f5f9ff, #eef6ff);
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}
.section-head.left {
    text-align: left;
    margin-left: 0;
}
.section-head h2 {
    font-size: 34px;
    margin: 0 0 10px;
    letter-spacing: -0.025em;
}
.section-head p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}
.grid {
    display: grid;
    gap: 20px;
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 19, 66, 0.045);
}
.card-body {
    padding: 20px;
}
.card h3,
.card h4 {
    margin: 0 0 8px;
}
.exam-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.exam-cover {
    height: 145px;
    padding: 20px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--primary) 66%,
        var(--cyan)
    );
    position: relative;
    overflow: hidden;
}
.exam-cover:after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    right: -45px;
    top: -55px;
}
.exam-cover h3 {
    font-size: 17px;
    line-height: 1.45;
    max-width: 85%;
}
.exam-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin: 11px 0;
}
.badge {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    background: var(--surface);
    color: var(--primary);
}
.badge-success {
    background: #e9fbf2;
    color: var(--success);
}
.badge-warning {
    background: #fff7e7;
    color: var(--warning);
}
.badge-neutral {
    background: #f0f2f7;
    color: #556077;
}
.exam-card p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}
.exam-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-top: auto;
}
.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}
.feature-card {
    padding: 22px;
}
.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--surface), #d7ecff);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.feature-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
}
.stats {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    overflow: hidden;
}
.stat {
    padding: 24px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat:last-child {
    border-right: 0;
}
.stat strong {
    display: block;
    font-size: 27px;
    color: var(--primary);
}
.stat span {
    font-size: 11px;
    color: var(--muted);
}
.page-hero {
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--primary) 70%,
        var(--cyan)
    );
    padding: 62px 0;
    color: #fff;
}
.page-hero h1 {
    font-size: 40px;
    margin: 0 0 9px;
}
.page-hero p {
    color: #dceeff;
    font-size: 13px;
    max-width: 700px;
    line-height: 1.7;
}
.exam-details-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 26px;
    background:
        radial-gradient(circle at 84% 16%, rgba(91, 206, 255, .3), transparent 23%),
        linear-gradient(120deg, #101843 0%, #0846b3 58%, #087ee5 100%);
}
.exam-details-hero::before,
.exam-details-hero::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}
.exam-details-hero::before {
    width: 280px;
    height: 280px;
    top: -175px;
    right: 8%;
    box-shadow: 0 0 0 42px rgba(255, 255, 255, .035), 0 0 0 84px rgba(255, 255, 255, .02);
}
.exam-details-hero::after {
    width: 160px;
    height: 160px;
    bottom: -118px;
    left: 4%;
}
.exam-details-hero .container {
    position: relative;
    z-index: 1;
}
.exam-details-hero h1 {
    font-size: clamp(32px, 3.1vw, 39px);
    letter-spacing: -.025em;
    margin-bottom: 9px;
}
.exam-details-hero .breadcrumb {
    display: inline-flex;
    gap: 4px;
    padding: 5px 9px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    margin: 0 0 8px;
}
.breadcrumb {
    font-size: 11px;
    color: #cfe6ff;
    margin-bottom: 13px;
}
.breadcrumb a:hover {
    color: #fff;
}
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.filters input,
.filters select,
.form-field input,
.form-field select,
.form-field textarea {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 11px;
    padding: 11px 12px;
    outline: none;
}
.filters input {
    min-width: 260px;
    flex: 1;
}
.filters input:focus,
.filters select:focus,
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--surface);
}
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
}
.detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 23px;
}
.detail-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}
.detail-kpi {
    background: var(--page);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}
.detail-kpi strong {
    display: block;
    font-size: 19px;
    color: var(--primary);
}
.detail-kpi span {
    font-size: 9px;
    color: var(--muted);
}
.instruction-list {
    padding-left: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}
.instruction-list li {
    margin: 8px 0;
}
.side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    position: sticky;
    top: 98px;
}
.side-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 12px;
}
.side-row span {
    color: var(--muted);
}
.auth-page {
    min-height: calc(100vh - 76px);
    display: grid;
    place-items: center;
    padding: 55px 16px;
    background: linear-gradient(145deg, #edf6ff, #fff);
}
.auth-box {
    width: min(500px, 100%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.auth-logo {
    width: 250px;
    display: block;
    margin: 0 auto 18px;
}
.auth-box h1 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 5px;
}
.auth-box > .sub {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-field.full {
    grid-column: 1/-1;
}
.form-field label {
    font-size: 11px;
    font-weight: 600;
}
.form-field textarea {
    min-height: 130px;
    resize: vertical;
}
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
}
.contact-card {
    padding: 23px;
}
.contact-row {
    display: flex;
    gap: 13px;
    margin: 16px 0;
}
.contact-icon {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 12px;
    background: var(--surface);
    color: var(--primary);
    display: grid;
    place-items: center;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}
.about-visual {
    min-height: 390px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--primary),
        var(--cyan)
    );
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
}
.about-visual strong {
    font-size: 42px;
}
.cta {
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--primary) 72%,
        var(--cyan)
    );
    color: #fff;
    border-radius: 24px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.cta h2 {
    margin: 0 0 7px;
}
.cta p {
    margin: 0;
    color: #dceeff;
    font-size: 12px;
}
.footer {
    background: var(--navy);
    color: #fff;
    padding: 38px 0 16px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
}
.footer-logo {
    width: 230px;
    max-width: 100%;
    background: #fff;
    padding: 9px 12px;
    border-radius: 12px;
    filter: none;
    margin-bottom: 14px;
}
.footer p,
.footer a {
    font-size: 13px;
    color: #aebbe0;
    line-height: 1.75;
}
.footer h4 {
    font-size: 13px;
}
.footer-links {
    display: grid;
    gap: 8px;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 24px;
    padding-top: 14px;
    font-size: 13px;
    color: #8794bd;
    display: flex;
    justify-content: space-between;
}
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: var(--navy);
    color: #fff;
    padding: 12px 15px;
    border-radius: 11px;
    display: none;
    z-index: 80;
    font-size: 11px;
}
.empty {
    padding: 35px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 15px;
    color: var(--muted);
}
@media (max-width: 980px) {
    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 82px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 10px;
        display: none;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links.open {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .nav-actions .register-link {
        display: none;
    }
    .hero-grid,
    .about-layout,
    .contact-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 43px;
    }
    .side-card {
        position: static;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .logo-full {
        height: 44px;
        width: auto;
        max-width: 140px;
    }
    .navbar {
        min-height: 68px;
    }
    .nav-actions .login-label {
        display: none;
    }
    .hero {
        padding: 64px 0;
    }
    .hero h1 {
        font-size: 35px;
    }
    .hero-card {
        padding: 18px;
    }
    .hero-kpis {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 56px 0;
    }
    .section-head h2 {
        font-size: 28px;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .stats-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .stat:last-child {
        border-bottom: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom,
    .cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-hero h1 {
        font-size: 31px;
    }
    .detail-kpis {
        grid-template-columns: 1fr 1fr;
    }
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    background: var(--navy);
    color: #fff;
    padding: 9px 12px;
    border-radius: 8px;
    z-index: 100;
}
.skip-link:focus {
    top: 12px;
}
.field-error {
    font-size: 10px;
    color: var(--danger);
    margin-top: 4px;
}
.legal-content {
    max-width: 900px;
}
.legal-content h2 {
    font-size: 21px;
    margin-top: 28px;
}
.legal-content p,
.legal-content li {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}
.faq-list {
    display: grid;
    gap: 11px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    padding: 15px 17px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.faq-answer {
    display: none;
    padding: 0 17px 16px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-question {
    color: var(--primary);
}

/* Laravel integration helpers using the prototype visual language. */
body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}
.hero-white {
    background: #fff !important;
    color: var(--primary) !important;
}
.prototype-muted {
    font-size: 12px !important;
    color: var(--muted) !important;
    line-height: 1.65 !important;
}
.prototype-center {
    text-align: center;
    margin-top: 28px;
}
.prototype-card-title {
    margin-top: 12px !important;
}
.prototype-no-margin {
    margin: 0 !important;
}
.prototype-white-outline {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}
.prototype-cover-badge {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
}
.prototype-detail-title {
    font-size: 30px;
    margin: 13px 0 8px;
}
.prototype-detail-copy {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
}
.prototype-instruction-title {
    margin-top: 24px;
}
.prototype-info {
    padding: 14px;
    color: #38537a;
    background: var(--surface);
    border: 1px solid #b8d8ff;
    border-radius: 13px;
    font-size: 12px;
}
.detail-card .instruction-list,
.detail-card .prototype-info {
    font-size: 14px;
}
.prototype-detail-price {
    margin: 13px 0;
    font-size: 28px;
}
.prototype-top-gap {
    margin-top: 16px;
}
.prototype-secondary-gap {
    margin-top: 9px;
}
.prototype-side-note {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}
.prototype-account-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}
.prototype-pagination nav > div:first-child {
    display: none;
}
.prototype-pagination nav > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    color: var(--muted);
    font-size: 11px;
}
.prototype-pagination nav span,
.prototype-pagination nav a {
    display: inline-flex;
    padding: 7px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
}
.prototype-pagination nav [aria-current="page"] span {
    color: #fff;
    background: var(--primary);
}
.alert {
    width: min(1180px, calc(100% - 32px));
    margin: 14px auto;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 12px;
}
.alert-success {
    color: #12633d;
    background: #e9fbf2;
    border: 1px solid #aaddc2;
}
.alert-danger {
    color: #8d1832;
    background: #fff0f3;
    border: 1px solid #f1b8c4;
}
.prototype-field-gap {
    margin-top: 13px;
}
.prototype-check {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    font-size: 11px;
}
.prototype-check input {
    width: auto;
}
.prototype-login-button {
    margin-top: 16px;
}
.prototype-auth-foot {
    text-align: center;
    margin-top: 17px;
    color: var(--muted);
    font-size: 11px;
}
.prototype-auth-foot a {
    color: var(--primary);
    font-weight: 600;
}
.prototype-demo {
    margin-top: 14px;
    padding: 11px;
    color: #38537a;
    background: var(--surface);
    border-radius: 11px;
    font-size: 10px;
}
.prototype-register-box {
    width: min(620px, 100%);
}
.auth-errors {
    display: grid;
    gap: 4px;
    margin-bottom: 13px;
    padding: 10px 12px;
    color: #8d1832;
    background: #fff0f3;
    border: 1px solid #f1b8c4;
    border-radius: 10px;
    font-size: 11px;
}
.prototype-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 13px;
}
.prototype-auth-options .prototype-check {
    margin-top: 0;
}
.prototype-auth-options > a {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
}
.prototype-auth-step {
    width: max-content;
    margin: 0 auto 9px;
    padding: 5px 9px;
    color: var(--primary);
    background: var(--surface);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-field .prototype-otp-input {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.38em;
    padding-left: calc(12px + 0.38em);
}
.prototype-pagination svg {
    width: 18px;
    height: 18px;
}
.prototype-pagination [rel="prev"],
.prototype-pagination [rel="next"] {
    align-items: center;
}
.prototype-pagination p {
    margin: 0;
}
.filters button {
    white-space: nowrap;
}
.student-flash-message {
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.student-flash-message.is-dismissing {
    opacity: 0;
    transform: translateY(-6px);
}
.auth-success,
.auth-errors {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 11px;
}
.auth-success {
    color: #12633d;
    background: #e9fbf2;
    border: 1px solid #aaddc2;
}
.auth-success button,
.auth-errors button {
    flex: none;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
.auth-errors > div {
    display: grid;
    gap: 4px;
}
