/* =========================================================
   WBS - GLOBAL
   ========================================================= */

.wbs-page,
.wbs-report-page {
    background: #f5f7fb;
    color: #1f3557;
}

.wbs-page {
    padding: 46px 0 60px;
}

.wbs-report-page {
    padding: 38px 0 60px;
}

.wbs-container {
    width: min(calc(100% - 40px), 1160px);
    margin: 0 auto;
}


/* =========================================================
   HEADER WBS
   ========================================================= */

.wbs-header {
    max-width: 760px;
    margin-bottom: 28px;
}

.wbs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    border-radius: 999px;

    background: #fff1e7;
    color: #d95c0b;

    font-size: 12px;
    font-weight: 750;
}

.wbs-header h1 {
    margin: 15px 0 10px;

    color: #162f56;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

.wbs-header p {
    margin: 0;

    color: #65748b;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WBS FORM LAYOUT
   ========================================================= */

.wbs-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 25px;

    align-items: start;
}

.wbs-form-card,
.wbs-side-card,
.wbs-check-card {
    border: 1px solid #e0e6ef;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.wbs-form-card {
    padding: 28px;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.form-section-title {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 21px;
}

.form-section-title > span {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e45d0a;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
}

.form-section-title strong,
.form-section-title small {
    display: block;
}

.form-section-title strong {
    color: #253c5f;

    font-size: 14px;
}

.form-section-title small {
    margin-top: 3px;

    color: #7e899a;

    font-size: 11px;
}

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #324663;

    font-size: 12px;
    font-weight: 700;
}

.form-group label em {
    color: #d93c3c;
    font-style: normal;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border: 1px solid #d7dfe9;
    border-radius: 8px;

    outline: none;

    background: #ffffff;
    color: #263d5d;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.form-group input,
.form-group select {
    height: 46px;

    padding: 0 13px;
}

.form-group textarea {
    min-height: 130px;

    padding: 12px 13px;

    resize: vertical;

    line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #e45d0a;

    box-shadow:
        0 0 0 3px
        rgba(228, 93, 10, .08);
}

.form-divider {
    height: 1px;

    margin: 8px 0 24px;

    background: #e8ecf2;
}


/* =========================================================
   PRIVACY NOTE
   ========================================================= */

.wbs-privacy-note {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin: 5px 0 20px;

    padding: 15px;

    border: 1px solid #f2dfd1;
    border-radius: 10px;

    background: #fff8f3;
    color: #765842;
}

.wbs-privacy-note > i {
    margin-top: 2px;

    color: #e45d0a;
}

.wbs-privacy-note strong,
.wbs-privacy-note span {
    display: block;
}

.wbs-privacy-note strong {
    margin-bottom: 4px;

    color: #694a37;

    font-size: 11px;
}

.wbs-privacy-note span {
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   BUTTON
   ========================================================= */

.wbs-submit {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ee741e,
            #d85100
        );

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.wbs-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(222, 88, 7, .18);
}


/* =========================================================
   WBS SIDEBAR
   ========================================================= */

.wbs-side {
    display: grid;
    gap: 16px;
}

.wbs-side-card {
    padding: 23px;
}

.side-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 16px;

    border-radius: 12px;

    background: #fff0e6;
    color: #de5907;

    font-size: 19px;
}

.wbs-side-card h3 {
    margin: 0 0 8px;

    color: #243d60;

    font-size: 15px;
}

.wbs-side-card p {
    margin: 0 0 17px;

    color: #718095;

    font-size: 11px;
    line-height: 1.6;
}

.wbs-side-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 12px 13px;

    border-radius: 8px;

    background: #fff3eb;
    color: #d85807;

    font-size: 11px;
    font-weight: 750;
}

.wbs-warning {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 15px;

    border: 1px solid #f0dfd2;
    border-radius: 10px;

    background: #fffaf6;

    color: #765d4a;
}

.wbs-warning i {
    margin-top: 2px;

    color: #e36617;
}

.wbs-warning p {
    margin: 0;

    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   ALERT
   ========================================================= */

.wbs-alert {
    margin-bottom: 18px;

    padding: 13px 14px;

    border-radius: 8px;

    font-size: 11px;
    line-height: 1.55;
}

.wbs-alert.error {
    border: 1px solid #ffd0d0;

    background: #fff2f2;
    color: #a43838;
}

.wbs-alert.success {
    border: 1px solid #cce8d5;

    background: #eef9f2;
    color: #26734a;
}

.wbs-alert ul {
    margin: 7px 0 0;
    padding-left: 18px;
}


/* =========================================================
   CHECK REPORT
   ========================================================= */

.wbs-check-page {
    min-height: 620px;
}

.wbs-check-container {
    width: min(calc(100% - 30px), 480px);
    margin: 0 auto;
}

.wbs-back {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 17px;

    color: #617087;

    font-size: 11px;
    font-weight: 650;
}

.wbs-check-card {
    padding: 30px;
}

.check-icon {
    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    border-radius: 14px;

    background: #fff0e5;
    color: #e45d0a;

    font-size: 21px;
}

.wbs-check-card h1 {
    margin: 0 0 8px;

    color: #1e385d;

    font-size: 24px;
}

.wbs-check-card > p {
    margin: 0 0 22px;

    color: #748196;

    font-size: 11px;
    line-height: 1.6;
}

.wbs-check-card .wbs-submit {
    width: 100%;
}


/* =========================================================
   REPORT SUCCESS
   ========================================================= */

.wbs-success {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 23px;

    padding: 21px;

    border: 1px solid #c8e9d4;
    border-radius: 13px;

    background: #f0faf4;
}

.wbs-success-icon {
    color: #2b925a;

    font-size: 25px;
}

.wbs-success span {
    color: #28784f;

    font-size: 10px;
    font-weight: 750;
}

.wbs-success h2 {
    margin: 5px 0;

    color: #244c37;

    font-size: 18px;
}

.wbs-success p {
    margin: 0;

    color: #60766a;

    font-size: 11px;
}

.wbs-credentials {
    display: flex;
    gap: 10px;

    margin-top: 15px;
}

.wbs-credentials > div {
    min-width: 180px;

    padding: 11px 13px;

    border: 1px dashed #82b99a;
    border-radius: 8px;

    background: #ffffff;
}

.wbs-credentials small,
.wbs-credentials strong {
    display: block;
}

.wbs-credentials small {
    color: #778b7f;

    font-size: 9px;
}

.wbs-credentials strong {
    margin-top: 3px;

    color: #18583a;

    font-size: 17px;
}

.credential-warning {
    margin-top: 11px;

    color: #795f2b;

    font-size: 10px;
}


/* =========================================================
   REPORT HEADING
   ========================================================= */

.report-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.report-heading > div > span {
    display: block;

    margin-top: 13px;

    color: #8995a6;

    font-size: 9px;
    font-weight: 650;

    letter-spacing: .5px;
    text-transform: uppercase;
}

.report-heading h1 {
    margin: 4px 0 5px;

    color: #17365f;

    font-size: 30px;
    line-height: 1.15;
}

.report-heading p {
    margin: 0;

    color: #718096;

    font-size: 13px;
}

.wbs-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
}

.status-baru {
    background: #fff0e5;
    color: #dd5907;
}

.status-diverifikasi {
    background: #eaf2ff;
    color: #1859ac;
}

.status-ditindaklanjuti {
    background: #fff4cf;
    color: #926b00;
}

.status-selesai {
    background: #e9f8ee;
    color: #267a49;
}


/* =========================================================
   WBS PROGRESS / TIMELINE
   ========================================================= */

.wbs-progress-card {
    margin-bottom: 24px;

    padding: 22px 24px;

    border: 1px solid #e0e6ee;
    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.wbs-progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.wbs-progress-heading span {
    display: block;

    margin-bottom: 3px;

    color: #8a95a5;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .5px;
    text-transform: uppercase;
}

.wbs-progress-heading h2 {
    margin: 0;

    color: #203b63;

    font-size: 17px;
}

.wbs-progress-heading > i {
    color: #e45d0a;

    font-size: 21px;
}

.wbs-progress {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.wbs-progress::before {
    content: "";

    position: absolute;

    top: 18px;
    left: 8%;
    right: 8%;

    height: 2px;

    background: #e1e6ed;

    z-index: 0;
}

.wbs-progress-item {
    position: relative;

    z-index: 1;

    padding: 0 12px;

    text-align: center;
}

.progress-marker {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    margin: 0 auto 11px;

    border: 2px solid #d9e0e8;
    border-radius: 50%;

    background: #fff;
    color: #8e99a8;

    font-size: 11px;
    font-weight: 800;
}

.progress-content strong,
.progress-content span {
    display: block;
}

.progress-content strong {
    margin-bottom: 5px;

    color: #798598;

    font-size: 12px;
}

.progress-content span {
    max-width: 190px;

    margin: 0 auto;

    color: #9aa4b2;

    font-size: 10px;
    line-height: 1.5;
}

.wbs-progress-item.completed .progress-marker {
    border-color: #35a366;

    background: #35a366;
    color: #ffffff;
}

.wbs-progress-item.completed .progress-content strong {
    color: #2d6f4b;
}

.wbs-progress-item.completed .progress-content span {
    color: #718779;
}

.wbs-progress-item.current .progress-marker {
    border-color: #e45d0a;

    background: #fff4ec;
    color: #e45d0a;

    box-shadow:
        0 0 0 5px
        rgba(228, 93, 10, .08);
}

.wbs-progress-item.current .progress-content strong {
    color: #d85707;
}

.wbs-progress-item.current .progress-content span {
    color: #795f50;
}

.wbs-progress-item.completed.current .progress-marker {
    border-color: #35a366;

    background: #35a366;
    color: #ffffff;

    box-shadow:
        0 0 0 5px
        rgba(53, 163, 102, .09);
}

.wbs-progress-item.completed.current .progress-content strong {
    color: #247347;
}


/* =========================================================
   REPORT LAYOUT
   ========================================================= */

.report-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        310px;

    gap: 24px;

    align-items: start;
}

.report-main-card {
    overflow: hidden;

    border: 1px solid #e0e6ee;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.report-section {
    padding: 24px 26px;
}

.report-section + .report-section {
    border-top: 1px solid #e8edf3;
}

.report-section h2 {
    margin: 0 0 15px;

    color: #203b63;

    font-size: 16px;
    font-weight: 750;
}

.report-description {
    color: #53627a;

    font-size: 13px;
    line-height: 1.75;

    overflow-wrap: anywhere;
}


/* =========================================================
   FOLLOW UP
   ========================================================= */

.follow-up-box {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px;

    border: 1px solid #cfe7d8;
    border-radius: 11px;

    background: #f0faf4;

    color: #3e604c;

    font-size: 13px;
    line-height: 1.7;
}

.follow-up-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #d9f1e2;
    color: #278453;

    font-size: 14px;
}

.follow-up-box > div:last-child {
    padding-top: 7px;

    overflow-wrap: anywhere;
}

.follow-up-empty {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border: 1px dashed #d7dfe8;
    border-radius: 10px;

    background: #fafbfd;

    color: #718096;
}

.follow-up-empty > i {
    margin-top: 2px;

    color: #e36617;

    font-size: 16px;
}

.follow-up-empty strong,
.follow-up-empty span {
    display: block;
}

.follow-up-empty strong {
    margin-bottom: 4px;

    color: #53637a;

    font-size: 12px;
}

.follow-up-empty span {
    color: #8490a1;

    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   REPORT SIDEBAR
   ========================================================= */

.report-sidebar {
    display: grid;
    gap: 14px;
}

.report-info-card {
    padding: 20px;

    border: 1px solid #e0e6ee;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.report-info-card h3 {
    margin: 0 0 15px;

    color: #203b63;

    font-size: 14px;
    font-weight: 750;
}

.report-info-card dl {
    margin: 0;
}

.report-info-card dl > div {
    padding: 11px 0;

    border-bottom: 1px solid #edf0f4;
}

.report-info-card dl > div:first-child {
    padding-top: 0;
}

.report-info-card dl > div:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.report-info-card dt {
    margin-bottom: 4px;

    color: #8995a7;

    font-size: 9px;
    font-weight: 650;

    letter-spacing: .3px;
    text-transform: uppercase;
}

.report-info-card dd {
    margin: 0;

    color: #294163;

    font-size: 12px;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.report-security-card {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    border: 1px solid #f0d8c5;
    border-radius: 11px;

    background: #fff8f3;

    color: #795b45;
}

.report-security-card > i {
    margin-top: 2px;

    color: #e35e0b;

    font-size: 15px;
}

.report-security-card strong,
.report-security-card span {
    display: block;
}

.report-security-card strong {
    margin-bottom: 4px;

    color: #78513a;

    font-size: 11px;
}

.report-security-card span {
    color: #856b5a;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .wbs-layout,
    .report-layout {
        grid-template-columns: 1fr;
    }

    .report-sidebar {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 750px) {

    .wbs-progress-card {
        padding: 20px;
    }

    .wbs-progress {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wbs-progress::before {
        top: 18px;
        bottom: 18px;
        left: 17px;
        right: auto;

        width: 2px;
        height: auto;
    }

    .wbs-progress-item {
        min-height: 82px;

        display: grid;

        grid-template-columns:
            36px
            minmax(0, 1fr);

        gap: 14px;

        align-items: start;

        padding: 0 0 18px;

        text-align: left;
    }

    .wbs-progress-item:last-child {
        min-height: 45px;
        padding-bottom: 0;
    }

    .progress-marker {
        margin: 0;
    }

    .progress-content {
        padding-top: 2px;
    }

    .progress-content span {
        max-width: none;
        margin: 0;
    }
}


@media (max-width: 650px) {

    .wbs-container {
        width: min(calc(100% - 26px), 1160px);
    }

    .wbs-page {
        padding: 34px 0 45px;
    }

    .wbs-report-page {
        padding: 28px 0 45px;
    }

    .wbs-form-card,
    .wbs-check-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wbs-submit {
        width: 100%;
    }

    .wbs-success {
        flex-direction: column;
    }

    .wbs-credentials {
        flex-direction: column;
    }

    .wbs-credentials > div {
        min-width: 0;
    }

    .report-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-sidebar {
        grid-template-columns: 1fr;
    }

    .report-section {
        padding: 20px;
    }

    .follow-up-box {
        padding: 15px;
    }
}


.progress-note i {
    display: block;

    margin-bottom: 5px;

    color: #32905b;

    font-size: 11px;
}

.progress-note p {
    margin: 0;

    font-size: 10px;
    line-height: 1.5;
}

.progress-note small {
    display: block;

    margin-top: 6px;

    color: #829187;

    font-size: 8px;
}


@media (max-width: 750px) {

    .progress-note {
        max-width: none;

        margin:
            9px
            0
            0;
    }
}

/* =========================================================
   CLICKABLE WBS TIMELINE
   ========================================================= */

.progress-status-button,
.progress-status-disabled {
    width: 100%;

    display: block;

    padding: 0;

    border: 0;

    background: transparent;

    color: inherit;

    font-family: inherit;

    text-align: center;
}

.progress-status-button {
    cursor: pointer;
}

.progress-status-button .progress-marker {
    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease;
}

.progress-status-button:hover .progress-marker {
    transform: translateY(-2px);

    box-shadow:
        0 5px 14px
        rgba(32, 59, 99, .12);
}

.progress-status-button:hover .progress-content strong {
    color: #d85707;
}

.progress-status-button:focus-visible {
    outline: 2px solid #e45d0a;
    outline-offset: 6px;

    border-radius: 8px;
}


/* Status yang sedang dipilih user */

.wbs-progress-item.selected .progress-marker {
    border-color: #e45d0a;

    background: #fff4ec;
    color: #e45d0a;

    box-shadow:
        0 0 0 5px
        rgba(228, 93, 10, .10);
}

.wbs-progress-item.selected .progress-content strong {
    color: #d85707;
}


/* Status current tetap hijau bila tidak sedang dipilih */

.wbs-progress-item.completed.current:not(.selected)
.progress-marker {
    border-color: #35a366;

    background: #35a366;
    color: #fff;

    box-shadow:
        0 0 0 5px
        rgba(53, 163, 102, .09);
}


/* Tahap yang belum tercapai */

.wbs-progress-item.disabled {
    cursor: default;

    opacity: .68;
}

.wbs-progress-item.disabled .progress-marker {
    background: #fff;
    border-color: #dce3eb;
    color: #9da8b7;
}

.wbs-progress-item.disabled .progress-content strong {
    color: #8c97a7;
}

.wbs-progress-item.disabled .progress-content span {
    color: #a2acb9;
}


/* =========================================================
   STATUS NOTE SECTION
   ========================================================= */

.status-note-section {
    background: #fff;
}

.status-note-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 15px;
}

.status-note-heading > div > span {
    display: block;

    margin-bottom: 4px;

    color: #8995a7;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .4px;
    text-transform: uppercase;
}

.status-note-heading h2 {
    margin: 0;

    color: #203b63;

    font-size: 16px;
}

.selected-status-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 28px;

    padding: 5px 10px;

    border-radius: 999px;

    white-space: nowrap;

    font-size: 9px;
    font-weight: 800;
}


/* Panel catatan */

.status-note-panel {
    display: none;
}

.status-note-panel.active {
    display: block;
}


/* Catatan admin */

.status-note-box {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px;

    border: 1px solid #d4e7dc;
    border-radius: 10px;

    background: #f3faf5;
}

.status-note-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #dff2e6;
    color: #2f8c58;

    font-size: 14px;
}

.status-note-content {
    min-width: 0;
}

.status-note-content p {
    margin: 0;

    color: #405d4b;

    font-size: 13px;
    line-height: 1.65;

    overflow-wrap: anywhere;
}

.status-note-content small {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-top: 8px;

    color: #829187;

    font-size: 9px;
}


/* Tahap tercapai tetapi catatan kosong */

.status-note-empty {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px;

    border: 1px dashed #d9e0e8;
    border-radius: 10px;

    background: #fafbfd;

    color: #748196;
}

.status-note-empty > i {
    margin-top: 2px;

    color: #e06416;
}

.status-note-empty strong,
.status-note-empty span {
    display: block;
}

.status-note-empty strong {
    margin-bottom: 4px;

    color: #53637a;

    font-size: 11px;
}

.status-note-empty span {
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {

    .progress-status-button,
    .progress-status-disabled {
        display: grid;

        grid-template-columns:
            36px
            minmax(0, 1fr);

        gap: 14px;

        text-align: left;
    }

    .progress-status-button .progress-marker,
    .progress-status-disabled .progress-marker {
        margin: 0;
    }

    .progress-status-button .progress-content,
    .progress-status-disabled .progress-content {
        padding-top: 2px;
    }
}


@media (max-width: 650px) {

    .status-note-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .status-note-box {
        padding: 15px;
    }
}
/* =========================================================
   WBS CHECK REPORT
   ========================================================= */

.wbs-check-page {
    min-height: 620px;
}

.wbs-check-container {
    width: min(calc(100% - 30px), 500px);
    margin: 0 auto;
}

.wbs-check-card {
    padding: 30px;

    border: 1px solid #e0e6ef;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.check-icon {
    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    margin-bottom: 16px;

    border-radius: 14px;

    background: #fff0e5;
    color: #e45d0a;

    font-size: 21px;
}

.wbs-check-label {
    display: block;

    margin-bottom: 5px;

    color: #df5d0a;

    font-size: 10px;
    font-weight: 750;
}

.wbs-check-card h1 {
    margin: 0 0 8px;

    color: #1e385d;

    font-size: 25px;
}

.wbs-check-card > p {
    margin: 0 0 23px;

    color: #748196;

    font-size: 11px;
    line-height: 1.6;
}

.wbs-check-form .wbs-submit {
    width: 100%;
}

.wbs-pin-field {
    position: relative;
}

.wbs-pin-field input {
    padding-right: 48px;
}

.wbs-pin-toggle {
    position: absolute;

    top: 50%;
    right: 6px;

    width: 38px;
    height: 38px;

    transform: translateY(-50%);

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 7px;

    background: transparent;
    color: #78869a;

    cursor: pointer;
}

.wbs-pin-toggle:hover {
    background: #f3f6f9;
    color: #e45d0a;
}


/* FORGOT ACCESS */

.wbs-forgot-access {
    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #e8edf3;

    text-align: center;
}

.wbs-forgot-access > span {
    display: block;

    margin-bottom: 7px;

    color: #8390a2;

    font-size: 10px;
}

.wbs-forgot-access a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #d95c0b;

    font-size: 11px;
    font-weight: 750;
}

.wbs-forgot-access a:hover {
    text-decoration: underline;
}


/* INFORMATION */

.wbs-check-info {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 14px;

    padding: 14px 16px;

    border: 1px solid #dfe6ee;
    border-radius: 10px;

    background: #f8fafc;

    color: #718096;
}

.wbs-check-info i {
    margin-top: 2px;

    color: #51759e;
}

.wbs-check-info p {
    margin: 0;

    font-size: 10px;
    line-height: 1.55;
}


@media (max-width: 650px) {

    .wbs-check-card {
        padding: 21px;
    }
}

.contact-required-note {
    margin-left: 5px;

    color: #8a96a7;

    font-size: 9px;
    font-weight: 500;
}

.wbs-recovery-notice {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin: 4px 0 12px;

    padding: 15px;

    border: 1px solid #d8e5f3;
    border-radius: 10px;

    background: #f5f9fd;

    color: #52667f;
}

.wbs-recovery-notice > i {
    margin-top: 2px;

    color: #2f6eb5;
}

.wbs-recovery-notice strong,
.wbs-recovery-notice span {
    display: block;
}

.wbs-recovery-notice strong {
    margin-bottom: 4px;

    color: #315678;

    font-size: 11px;
}

.wbs-recovery-notice span {
    font-size: 10px;
    line-height: 1.55;
}

/* =========================================================
   WBS RECOVERY PAGE
   ========================================================= */

.wbs-recovery-page {
    min-height: 620px;
}

.wbs-recovery-container {
    width: min(calc(100% - 30px), 580px);
    margin: 0 auto;
}


/* =========================================================
   RECOVERY FORM
   ========================================================= */

.wbs-recovery-card {
    padding: 30px;

    border: 1px solid #e0e6ef;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.recovery-form-header {
    margin-bottom: 24px;
}

.recovery-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #df5d0a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .3px;
}

.recovery-form-header h1 {
    margin: 0 0 8px;

    color: #1e385d;

    font-size: 25px;
    line-height: 1.25;
}

.recovery-form-header p {
    margin: 0;

    color: #748196;

    font-size: 11px;
    line-height: 1.65;
}

.wbs-recovery-form .form-group {
    margin-bottom: 18px;
}

.recovery-help {
    display: block;

    margin-top: 6px;

    color: #8995a6;

    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   RECOVERY INFORMATION
   ========================================================= */

.recovery-info {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-bottom: 18px;
    padding: 14px 15px;

    border: 1px solid #d8e5f3;
    border-radius: 9px;

    background: #f5f9fd;
}

.recovery-info > i {
    margin-top: 2px;

    color: #356ea8;

    font-size: 14px;
}

.recovery-info strong {
    display: block;

    margin-bottom: 3px;

    color: #35587b;

    font-size: 11px;
}

.recovery-info p {
    margin: 0;

    color: #657b91;

    font-size: 10px;
    line-height: 1.55;
}

.recovery-submit {
    width: 100%;
}


/* =========================================================
   RECOVERY SUCCESS
   ========================================================= */

.wbs-recovery-success {
    padding: 30px;

    border: 1px solid #d6e8dd;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(18, 38, 70, .05);
}

.recovery-success-header {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    margin-bottom: 24px;
}

.recovery-success-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #e9f7ee;
    color: #2f8d58;

    font-size: 20px;
}

.recovery-success-header h1 {
    margin: 0 0 7px;

    color: #1e385d;

    font-size: 25px;
    line-height: 1.25;
}

.recovery-success-header p {
    margin: 0;

    color: #748196;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   RECOVERY CREDENTIALS
   ========================================================= */

.recovery-credentials {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 16px;
}

.recovery-credential {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;

    padding: 16px;

    border: 1px solid #dce5ed;
    border-radius: 10px;

    background: #f8fafc;
}

.recovery-credential.pin {
    border-color: #bfe1cb;

    background: #f0faf4;
}

.recovery-credential-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: #e9eff6;
    color: #52749a;

    font-size: 13px;
}

.recovery-credential.pin .recovery-credential-icon {
    background: #dcefe3;
    color: #2f8d58;
}

.recovery-credential small,
.recovery-credential strong {
    display: block;
}

.recovery-credential small {
    margin-bottom: 4px;

    color: #8895a5;

    font-size: 9px;
}

.recovery-credential strong {
    color: #213d60;

    font-size: 15px;
    line-height: 1.25;

    overflow-wrap: anywhere;
}

.recovery-credential.pin strong {
    color: #237247;

    font-size: 22px;
    letter-spacing: 2px;
}


/* =========================================================
   WARNING
   ========================================================= */

.recovery-warning {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-bottom: 18px;

    padding: 14px 15px;

    border: 1px solid #f0d8bd;
    border-radius: 9px;

    background: #fff8f1;
}

.recovery-warning > i {
    margin-top: 2px;

    color: #e36312;

    font-size: 13px;
}

.recovery-warning strong,
.recovery-warning span {
    display: block;
}

.recovery-warning strong {
    margin-bottom: 3px;

    color: #805337;

    font-size: 11px;
}

.recovery-warning span {
    color: #856c5a;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   OPEN REPORT BUTTON
   ========================================================= */

.recovery-open-button {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 18px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ee741e,
            #d85100
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.recovery-open-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(222, 88, 7, .18);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 650px) {

    .wbs-recovery-container {
        width: min(calc(100% - 24px), 580px);
    }

    .wbs-recovery-card,
    .wbs-recovery-success {
        padding: 21px;
    }

    .recovery-success-header {
        flex-direction: column;
    }

    .recovery-credentials {
        grid-template-columns: 1fr;
    }

    .recovery-credential.pin strong {
        font-size: 20px;
    }
}

/* =========================================================
   WBS DECLARATION
   ========================================================= */

.wbs-declaration{
    margin-bottom:24px;
}

.wbs-declaration > label{
    display:flex;
    align-items:flex-start;
    gap:14px;

    padding:18px;

    border:1px solid #e7cda9;
    border-radius:16px;

    background:#fffaf3;

    cursor:pointer;
}

.wbs-declaration input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.wbs-declaration-check{
    flex:0 0 22px;

    width:22px;
    height:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-top:1px;

    border:2px solid #cfaa76;
    border-radius:7px;

    background:#fff;

    color:#fff;

    transition:.18s ease;
}

.wbs-declaration-check i{
    font-size:11px;
    opacity:0;
}

.wbs-declaration input:checked
+ .wbs-declaration-check{
    border-color:#b87118;
    background:#b87118;
}

.wbs-declaration input:checked
+ .wbs-declaration-check i{
    opacity:1;
}

.wbs-declaration-content{
    display:block;
}

.wbs-declaration-content strong{
    display:block;

    margin-bottom:6px;

    color:#382819;

    font-size:14px;
    line-height:1.55;
    font-weight:800;
}

.wbs-declaration-content small{
    display:block;

    color:#816c55;

    font-size:12px;
    line-height:1.55;
}

.wbs-declaration > label:hover{
    border-color:#d6b37f;
    background:#fff8ee;
}