@import "auth/auth.css";
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   DESIGN TOKENS
   Warna diambil dari 2 maskot Epsilon:
   - Teal   -> jubah/armor maskot biru
   - Maroon -> jubah maskot pink (di-soft-kan jadi merah marun elegan,
               bukan magenta neon, supaya terasa profesional)
   - Yellow -> aksen sepatu/detail kostum kedua maskot
   ========================================================= */
:root {
    --teal: #0891b2;       /* deep cyan-teal, dari maskot biru   */
    --teal-dark: #0e5a6e;
    --maroon: #b83b46;     /* merah marun, dari maskot pink      */
    --maroon-dark: #8f2c35;
    --yellow: #f5b93f;     /* aksen kuning, dari detail kostum    */

    --ink: #16172b;        /* teks utama, gelap-netral            */
    --ink-60: rgba(22, 23, 43, .62);
    --ink-45: rgba(22, 23, 43, .45);

    --bg: #f8f9fc;         /* background halaman                  */
    --paper: #ffffff;      /* kartu / permukaan                   */
    --line: #e7e9f2;       /* border tipis                        */

    --shadow-sm: 0 2px 10px rgba(16, 24, 40, .06);
    --shadow-md: 0 10px 30px rgba(16, 24, 40, .08);
    --shadow-lg: 0 20px 45px rgba(16, 24, 40, .12);

    --radius: .9rem;
    --radius-sm: .6rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-mono    { font-family: 'Inter', sans-serif; letter-spacing: .04em; }

img { image-rendering: auto; }

a { text-decoration: none; }

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}

/* ---------- Gap utility ---------- */
.gap-1 { gap: .25rem !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

@media (min-width: 992px) {
    .gap-lg-2 { gap: .5rem !important; }
    .gap-lg-3 { gap: 1rem !important; }
    .gap-lg-4 { gap: 1.5rem !important; }
}

/* ---------- Helper warna & background ---------- */
.text-ink    { color: var(--ink) !important; }
.text-ink-60 { color: var(--ink-60) !important; }
.text-ink-45 { color: var(--ink-45) !important; }
.text-signal { color: var(--maroon) !important; }
.text-teal   { color: var(--teal) !important; }
.bg-paper    { background-color: var(--bg) !important; }
.bg-ink      { background-color: var(--ink) !important; }

/* =========================================================
   TOMBOL
   ========================================================= */
.btn-epsilon-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background-color: var(--teal);
    border: 1.5px solid var(--teal);
    border-radius: .6rem;
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-epsilon-primary:hover {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-epsilon-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn-epsilon-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--maroon);
    background-color: transparent;
    border: 1.5px solid var(--line);
    border-radius: .6rem;
    transition: border-color .15s ease, color .15s ease, transform .15s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-epsilon-outline:hover {
    border-color: var(--maroon);
    color: var(--maroon);
    transform: translateY(-2px);
}
.btn-epsilon-outline:active { transform: translateY(0); }

@media (max-width: 575.98px) {
    .btn-epsilon-primary, .btn-epsilon-outline {
        width: 100%;
        padding: .85rem 1rem;
    }
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background-color: rgba(248, 249, 252, .85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
#site-header.scrolled {
    background-color: rgba(255, 255, 255, .92);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

/* --- Perbaikan navbar: cegah menu wrap ke baris baru --- */
#site-header .navbar {
    flex-wrap: nowrap;
}
#site-header .navbar-brand {
    flex-shrink: 0;
}
#site-header .navbar-collapse {
    flex-shrink: 1;
    min-width: 0;
}
#site-header .navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
}
#site-header .navbar-nav .nav-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-link-epsilon {
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink-60);
    transition: color .2s ease;
    white-space: nowrap; /* <-- fix utama: cegah "03 — FAQ" patah baris */
    display: inline-block;
}
.nav-link-epsilon:hover { color: var(--teal); }

/* Kalau layar makin sempit (menjelang breakpoint mobile),
   kecilkan gap & font dulu daripada dibiarkan wrap */
@media (min-width: 992px) and (max-width: 1240px) {
    #site-header .navbar-nav { gap: .75rem !important; }
    .nav-link-epsilon { font-size: .78rem; }
}

/* =========================================================
   HERO
   (memakai .hero-simple sebagai satu-satunya gaya hero,
   diselaraskan dgn warna maskot: teal + maroon, bukan neon)
   ========================================================= */
.hero-simple {
    position: relative;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
    background: linear-gradient(180deg, #fdf3f2 0%, #eef8fb 100%);
    color: var(--ink);
    overflow: hidden;
}

.hero-simple .hero-eyebrow {
    display: inline-block;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--maroon);
    background: #fbe7e6;
    padding: .4rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-simple h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.hero-simple h1 span {
    background: linear-gradient(90deg, var(--maroon), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-simple p.lead {
    font-size: 1rem;
    color: var(--ink-60);
    max-width: 38rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-simple .btn-simple-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
    background: var(--maroon);
    padding: .8rem 1.75rem;
    border-radius: .6rem;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease;
}
.hero-simple .btn-simple-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff;
    background: var(--maroon-dark);
}

.hero-simple .btn-simple-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
    background: #fff;
    padding: .8rem 1.75rem;
    border-radius: .6rem;
    border: 1.5px solid var(--line);
    transition: border-color .15s ease, transform .15s ease;
}
.hero-simple .btn-simple-outline:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    color: var(--ink);
}

.hero-simple .stat-simple dt {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--ink-45);
    margin-bottom: .25rem;
}
.hero-simple .stat-simple dd {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.hero-simple .mascot-card {
    background: #fff;
    border-radius: 1.1rem;
    padding: .6rem;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}
.hero-simple .mascot-card img {
    width: 100%;
    max-width: 220px;
    border-radius: .7rem;
    display: block;
}

@media (max-width: 991.98px) {
    .hero-simple .mascot-card { max-width: 140px; }
    .hero-simple .mascot-card img { max-width: 100%; }
}

@media (max-width: 575.98px) {
    .hero-simple { padding-top: 5.5rem; padding-bottom: 2.5rem; }
    .hero-simple h1 { font-size: 1.9rem; }
    .hero-simple p.lead { font-size: .9rem; }
    .hero-simple .btn-simple-primary,
    .hero-simple .btn-simple-outline { width: 100%; justify-content: center; }
}

/* =========================================================
   KARTU LOMBA
   ========================================================= */
.competition-card {
    border: 1px solid var(--line);
    background-color: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.competition-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.competition-card .card-img-wrap {
    position: relative;
    width: 100%;
    height: auto; /* Biarkan tinggi mengikuti gambar aslinya */
    flex-shrink: 0; /* Mencegah gambar menyusut karena efek flex-column pada card */
    overflow: hidden;
}

.competition-card .card-img-wrap img {
    width: 100% !important;
    height: auto !important; /* Paksa tinggi menyesuaikan secara proporsional */
    display: block !important;
    transition: transform .3s ease;
}
.competition-card:hover .card-img-wrap img { transform: scale(1.05); }
.competition-card .card-tag {
    position: absolute; top: 1rem; left: 1rem;
    font-size: .7rem;
    font-weight: 600;
    padding: .35rem .7rem;
    border-radius: 999px;
    background-color: rgba(255,255,255,.92);
    color: var(--maroon);
    box-shadow: var(--shadow-sm);
}
.competition-card .card-body-epsilon { padding: 1.75rem; display: flex; flex-direction: column; height: 100%; }

@media (max-width: 575.98px) {
    .competition-card .card-img-wrap { height: 10rem; }
    .competition-card .card-body-epsilon { padding: 1.25rem; }
}

/* =========================================================
   MODAL
   ========================================================= */
.modal-epsilon .modal-content {
    border-radius: var(--radius);
    border: none;
    background-color: var(--paper);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.modal-epsilon .modal-header { border-bottom: 1px solid var(--line); padding: 1.5rem; }
.modal-epsilon .modal-body { padding: 1.5rem; color: var(--ink-60); font-size: .9rem; line-height: 1.8; }
.modal-epsilon .modal-footer { border-top: 1px solid var(--line); background-color: var(--bg); padding: 1.25rem 1.5rem; }
.guide-download-box {
    display: flex; align-items: center; gap: .75rem;
    margin-top: 1rem; border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background-color: #f0fbfd;
    padding: 1rem;
    color: var(--teal-dark); font-size: .85rem; font-weight: 500;
    transition: background-color .15s ease;
}
.guide-download-box:hover { background-color: #e2f6fa; }
.guide-download-box .icon-circle {
    display: flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; flex-shrink: 0;
    background-color: #fff; border-radius: 50%; color: var(--teal);
    box-shadow: var(--shadow-sm);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
    background-color: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: .9rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; text-align: left; padding: 1.25rem 1.5rem; background: none; border: none;
    font-size: .9rem; font-weight: 600; color: var(--ink);
    cursor: pointer;
}
.faq-question:hover { color: var(--teal); }
.faq-question:not(.collapsed) { color: var(--teal); }
.faq-question:not(.collapsed) .faq-icon { transform: rotate(180deg); color: var(--maroon); }
.faq-icon { color: var(--ink-45); transition: transform .3s ease; flex-shrink: 0; }
.faq-answer-body { padding: 0 1.5rem 1.25rem; color: var(--ink-60); font-size: .87rem; line-height: 1.8; }

@media (max-width: 575.98px) {
    .faq-question { padding: 1rem; font-size: .85rem; }
    .faq-answer-body { padding: 0 1rem 1rem; font-size: .82rem; }
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline-section { background-color: var(--bg); color: var(--ink); }
.timeline-wrap { position: relative; max-width: 48rem; margin: 0 auto; padding: 2rem 0; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background-color: var(--line); transform: translateX(-50%); }
.timeline-row { position: relative; display: flex; align-items: center; margin-bottom: 1.5rem; }
.timeline-row.left { justify-content: flex-start; }
.timeline-row.right { justify-content: flex-end; }
.timeline-dot {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: .85rem; height: .85rem; border-radius: 50%;
    background-color: var(--maroon); border: 3px solid var(--bg); z-index: 2;
    box-shadow: 0 0 0 2px var(--line);
}
.timeline-item { width: calc(50% - 2.5rem); }
.timeline-row.left .timeline-item { text-align: right; padding-right: 1rem; }
.timeline-row.right .timeline-item { text-align: left; padding-left: 1rem; }
.timeline-card {
    display: inline-block; width: 100%;
    border: 1px solid var(--line); background-color: var(--paper);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.4rem; transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: var(--shadow-sm);
}
.timeline-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.timeline-card .date { font-size: .72rem; font-weight: 600; color: var(--teal-dark); margin-bottom: .3rem; display: block; }
.timeline-card .title { color: var(--ink); font-size: .92rem; font-weight: 600; }

@media (max-width: 767.98px) {
    .timeline-line { left: 1rem; }
    .timeline-dot { left: 1rem; }
    .timeline-row.left, .timeline-row.right { justify-content: flex-start; }
    .timeline-item, .timeline-row.left .timeline-item, .timeline-row.right .timeline-item {
        width: calc(100% - 3rem); margin-left: 3rem; text-align: left; padding: 0;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-epsilon { background-color: var(--ink); color: #fff; padding-top: 3rem; }
.footer-epsilon h3 { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.footer-epsilon a.social-icon {
    width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center;
    background-color: rgba(255,255,255,.08); border-radius: 50%; color: #fff;
    transition: all .2s ease;
}
.footer-epsilon a.social-icon:hover { background-color: var(--teal); transform: translateY(-3px); }

/* =========================================================
   FLOATING ACTION BUTTON (FAB)
   ========================================================= */
.fab-wrapper {
    position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1040;
    display: flex; flex-direction: column; align-items: flex-end;
}
.fab-main {
    width: 3.5rem; height: 3.5rem;
    border-radius: 50%;
    background-color: var(--maroon); color: #fff;
    border: none;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; transition: all .2s ease; cursor: pointer;
}
.fab-wrapper.open .fab-main { background-color: var(--teal); }

.fab-items { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; margin-bottom: 1rem; }
.fab-item {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background-color: #fff; color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; transform: translateY(10px); pointer-events: none; transition: all .2s ease; position: relative;
    cursor: pointer;
}
.fab-wrapper.open .fab-item { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-wrapper.open .fab-item:nth-child(1) { transition-delay: .12s; }
.fab-wrapper.open .fab-item:nth-child(2) { transition-delay: .08s; }
.fab-wrapper.open .fab-item:nth-child(3) { transition-delay: .04s; }
.fab-wrapper.open .fab-item:nth-child(4) { transition-delay: 0s; }

.fab-item:hover { background-color: var(--teal); color: #fff; }

.fab-item::before {
    content: attr(data-fab-label); position: absolute; right: 3.75rem; white-space: nowrap;
    background-color: var(--ink); color: #fff; font-size: .72rem; font-weight: 500;
    padding: .4rem .7rem; border-radius: .4rem;
    opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.fab-item:hover::before { opacity: 1; }

.fab-backdrop {
    position: fixed; inset: 0; background-color: rgba(22, 23, 43, .45);
    z-index: 1035; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.fab-backdrop.show { opacity: 1; pointer-events: auto; }

@media (max-width: 575.98px) {
    .fab-wrapper { right: 1rem; bottom: 1rem; }
    .fab-main { width: 3rem; height: 3rem; font-size: 1rem; }
    .fab-item { width: 2.6rem; height: 2.6rem; }
}

/* =========================================================
   SCROLL REVEAL — halus, bukan animasi berlebihan
   ========================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
}























































/* =========================================================
   TEAM REGISTER FORM — Full Vertical Layout
   ========================================================= */
.team-register-wrap {
    width: 100%;
    max-width: 680px; /* Ukuran ideal untuk single-column form */
    margin: 0 auto;
}

.team-register-wrap h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink);
}

.team-register-wrap .auth-subtitle {
    color: var(--ink-60);
    font-size: .9rem;
    margin-bottom: 1.75rem;
}

.team-register-wrap label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .35rem;
}

.team-register-wrap .form-control,
.team-register-wrap .custom-select {
    padding: .65rem .9rem;
    font-size: .92rem;
    border-radius: .55rem;
    border: 1.5px solid var(--line);
    min-height: 46px;
    width: 100%;
}

.team-register-wrap .form-control:focus,
.team-register-wrap .custom-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, .12);
}

.team-register-wrap .form-control-file {
    padding: .55rem 0;
    font-size: .85rem;
    width: 100%;
}

.team-register-wrap .form-group {
    margin-bottom: 1.25rem;
}

/* Memaksa elemen dalam form-row ke bawah murni */
.team-register-wrap .form-row {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
}

.team-register-wrap .form-row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

/* Kartu tiap anggota */
.team-register-wrap .member-card {
    border-radius: 1rem !important;
    border: 1px solid var(--line) !important;
    background-color: #fff !important;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.75rem !important;
}

.team-register-wrap .member-card .card-body {
    padding: 1.75rem !important;
}

.team-register-wrap .member-card p.font-weight-bold {
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 1.1rem !important;
}

.team-register-wrap .doc-section-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin: 1.25rem 0 .75rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
}

.team-register-wrap .btn-epsilon-primary {
    width: 100%; /* Memastikan tombol selebar container */
    padding: .95rem 1.5rem;
    font-size: .95rem;
    display: block;
}

/* ---------- DESKTOP ---------- */
@media (min-width: 992px) {
    .team-register-wrap {
        max-width: 680px; /* Diperketat agar form single column tidak terlalu renggang */
    }
    .team-register-wrap .member-card .card-body {
        padding: 2rem !important;
    }
    .team-register-wrap .form-group {
        margin-bottom: 1.35rem;
    }
    .team-register-wrap h1 {
        font-size: 1.8rem;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 575.98px) {
    .team-register-wrap {
        max-width: 100%;
    }
    .team-register-wrap .member-card .card-body {
        padding: 1.1rem !important;
    }
    .team-register-wrap h1 {
        font-size: 1.3rem;
    }
    .team-register-wrap .auth-subtitle {
        font-size: .82rem;
        margin-bottom: 1.25rem;
    }
}








/* =========================================================
   ADD MEMBER 2 OPTIONAL BUTTON STYLING
   ========================================================= */
.add-member-card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background-color: #FAFCFE;
    border: 2px dashed var(--border, #E3E6EC);
    border-radius: 1rem;
    color: var(--ink, #16233F);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.add-member-card-btn:hover {
    background-color: var(--teal-soft, #E3F6F5);
    border-color: var(--teal, #0EA5A0);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 160, 0.1);
}

/* Icon Circle */
.add-member-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border, #E3E6EC);
    color: var(--teal, #0EA5A0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.add-member-card-btn:hover .add-member-icon {
    background-color: var(--teal, #0EA5A0);
    border-color: var(--teal, #0EA5A0);
    color: #ffffff;
}

/* Text Detail */
.add-member-text {
    display: flex;
    flex-direction: column;
}

.add-member-text .title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink, #16233F);
    line-height: 1.2;
}

.add-member-text .subtitle {
    font-size: 0.78rem;
    color: var(--text-soft, #64748B);
    margin-top: 2px;
}