@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --spr-blue: #1268ed;
    --spr-blue-dark: #0b4cae;
    --spr-navy: #102a43;
    --spr-green: #17a957;
    --spr-red: #df3448;
    --spr-gray: #64748b;
    --spr-line: #dbe6f1;
    --spr-bg: #eef4fa;
}

* { box-sizing: border-box; }

html, body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(18, 104, 237, .11), transparent 29%),
        linear-gradient(180deg, #f7fbff 0%, var(--spr-bg) 100%);
    color: var(--spr-navy);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
}

.spr-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.spr-header {
    min-height: 76px;
    padding: 12px clamp(18px, 4vw, 62px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    background: linear-gradient(110deg, #075ecf, #1783f4);
    box-shadow: 0 8px 25px rgba(12, 77, 145, .2);
}

.spr-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spr-brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .25);
    font-size: 23px;
}

.spr-brand-mark img {
    width: 39px;
    height: 39px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.spr-brand h1 {
    margin: 0 0 3px;
    font-size: 18px;
    font-weight: 800;
}

.spr-brand p {
    margin: 0;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .86;
}

.spr-login-link {
    padding: 9px 13px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 9px;
    background: rgba(255, 255, 255, .11);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.spr-login-link:hover,
.spr-login-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, .2);
    text-decoration: none;
}

.spr-main {
    width: min(1180px, calc(100% - 30px));
    margin: 0 auto;
    padding: 26px 0 30px;
    flex: 1;
}

.spr-intro {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.spr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--spr-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.spr-intro h2 {
    margin: 0 0 6px;
    color: #102f55;
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.spr-intro p {
    max-width: 720px;
    margin: 0;
    color: #667991;
    font-size: 12px;
    line-height: 1.6;
}

.spr-status-button {
    min-width: 190px;
    padding: 11px 15px;
    color: #fff;
    border: 0;
    border-radius: 9px;
    background: #173755;
    box-shadow: 0 7px 18px rgba(16, 42, 67, .18);
    font-size: 10px;
    font-weight: 700;
}

.spr-grid { margin-left: -7px; margin-right: -7px; }
.spr-grid > [class*="col-"] { padding-left: 7px; padding-right: 7px; }

.spr-card,
.spr-side-card,
.spr-disabled {
    border: 1px solid var(--spr-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(42, 79, 117, .07);
}

.spr-card { overflow: hidden; }

.spr-card-head {
    min-height: 65px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #e4edf6;
    background: #fbfdff;
}

.spr-card-head h3 {
    margin: 0 0 4px;
    color: #143a62;
    font-size: 14px;
    font-weight: 800;
}

.spr-card-head h3 i { color: var(--spr-blue); }
.spr-card-head p { margin: 0; color: #8a9aae; font-size: 9px; }

.spr-secure-badge {
    padding: 6px 9px;
    color: #0a8a47;
    border-radius: 999px;
    background: #e9f9f1;
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
}

#publicRequestForm { padding: 18px; }

.form-group { margin-bottom: 12px; }
.form-group label {
    margin-bottom: 5px;
    color: #38536f;
    font-size: 9px;
    font-weight: 700;
}
.form-group label span { color: var(--spr-red); }

.form-control {
    height: 36px;
    padding: 8px 11px;
    border: 1px solid #cbd9e7;
    border-radius: 7px;
    box-shadow: none;
    color: #253d55;
    font-size: 10px;
}

.form-control:focus {
    border-color: #4d9bf5;
    box-shadow: 0 0 0 3px rgba(18, 104, 237, .1);
}

textarea.form-control {
    min-height: 84px;
    resize: vertical;
}

.spr-help {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    color: #8a9aae;
    font-size: 8px;
}

.spr-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 4px 0 16px;
    color: #64788e;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.45;
    cursor: pointer;
}

.spr-consent input { margin-top: 2px; }

.spr-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
}

.spr-btn,
.spr-modal-btn {
    padding: 9px 13px;
    border: 0;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 800;
}

.spr-btn-primary,
.spr-modal-primary { color: #fff; background: var(--spr-blue); }
.spr-btn-light,
.spr-modal-light { color: #52677d; background: #e8eef4; }
.spr-modal-danger { color: #fff; background: var(--spr-red); }

.spr-side-card {
    margin-bottom: 14px;
    padding: 18px;
}

.spr-side-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, #0e67df, #168bec);
}

.spr-side-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .16);
    font-size: 16px;
}

.spr-side-card h3 {
    margin: 0 0 9px;
    font-size: 14px;
    font-weight: 800;
}

.spr-side-card p,
.spr-side-card li {
    font-size: 9px;
    line-height: 1.55;
}

.spr-side-primary p { color: rgba(255, 255, 255, .88); }
.spr-side-primary ul { padding-left: 18px; margin: 12px 0 0; }
.spr-side-primary li { margin-bottom: 6px; }

.spr-steps > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #edf2f7;
}
.spr-steps > div:last-child { border-bottom: 0; }
.spr-steps span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 7px;
    color: var(--spr-blue);
    background: #e9f2ff;
    font-size: 9px;
    font-weight: 800;
}
.spr-steps p { margin: 0; color: #60758d; font-weight: 600; }

.spr-disabled {
    padding: 55px 20px;
    text-align: center;
}
.spr-disabled > i { color: #f59e0b; font-size: 42px; }
.spr-disabled h3 { margin: 14px 0 5px; font-weight: 800; }
.spr-disabled p { color: #75879a; }

.spr-footer {
    min-height: 38px;
    padding: 8px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #7790a7;
    border-top: 1px solid #d8e4ef;
    background: rgba(255, 255, 255, .65);
    font-size: 8px;
}

.spr-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 18px 55px rgba(17, 54, 88, .25);
}
.spr-modal .modal-header {
    padding: 12px 15px;
    color: #fff;
    border-bottom: 0;
    background: linear-gradient(90deg, #166fca, #45a1c7);
}
.spr-modal .modal-header .close { color: #fff; opacity: .92; }
.spr-modal .modal-title { font-size: 11px; font-weight: 800; }
.spr-modal .modal-body { padding: 17px; }
.spr-modal .modal-footer { padding: 9px 12px; background: #f7fafc; }
.spr-modal-success { background: linear-gradient(90deg, #109a50, #37ba77) !important; }

.spr-success-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    color: #fff;
    border-radius: 50%;
    background: #19ad5e;
    font-size: 24px;
}
.spr-modal-heading { margin: 0 0 4px; text-align: center; font-size: 15px; font-weight: 800; }
.spr-modal-copy { margin: 0 0 14px; color: #718398; text-align: center; font-size: 9px; }

.spr-access-box {
    margin-bottom: 8px;
    padding: 10px 12px;
    border: 1px solid #cfe0f0;
    border-radius: 8px;
    background: #f7fbff;
}
.spr-access-box label { display: block; margin-bottom: 3px; color: #7890a7; font-size: 8px; }
.spr-access-box strong { display: block; color: var(--spr-blue); font-size: 19px; letter-spacing: .02em; }
.spr-access-box code { display: block; word-break: break-all; color: #7939d5; background: transparent; font-size: 10px; }

.spr-warning-note,
.spr-modal-note {
    padding: 9px 10px;
    border: 1px solid #dae7f2;
    border-radius: 7px;
    color: #62768b;
    background: #f1f7fc;
    font-size: 8.5px;
    line-height: 1.45;
}
.spr-warning-note { color: #8c6512; border-color: #f4dfad; background: #fff9e9; }
.spr-modal-note { margin-bottom: 12px; }

.spr-status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.spr-status-code { color: var(--spr-blue); font-size: 18px; font-weight: 800; }
.spr-status-badge {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
}
.spr-status-pending { color: #8a5b00; background: #fff0c8; }
.spr-status-approved { color: #08723d; background: #dff7eb; }
.spr-status-rejected { color: #a12030; background: #ffe1e5; }
.spr-status-cancelled { color: #566273; background: #e8edf2; }

.spr-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.spr-detail-item {
    padding: 9px 10px;
    border: 1px solid #e1eaf2;
    border-radius: 7px;
    background: #fbfdff;
}
.spr-detail-item.full { grid-column: 1 / -1; }
.spr-detail-item small { display: block; color: #8a9aab; font-size: 7.5px; text-transform: uppercase; }
.spr-detail-item strong { display: block; margin-top: 3px; color: #304b67; font-size: 9px; line-height: 1.45; }

.spr-confirmed-box {
    margin-top: 10px;
    padding: 11px;
    color: #0b7540;
    border: 1px solid #bde8d2;
    border-radius: 8px;
    background: #eafaf2;
}
.spr-confirmed-box strong { display: block; margin-top: 3px; font-size: 13px; }

.spr-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.swal2-popup { font-size: 11px !important; border-radius: 12px !important; }

@media (max-width: 991px) {
    .spr-side-card:first-child { margin-top: 14px; }
}

@media (max-width: 700px) {
    .spr-header { padding: 10px 14px; }
    .spr-brand h1 { font-size: 14px; }
    .spr-login-link { padding: 8px; font-size: 0; }
    .spr-login-link i { font-size: 13px; }
    .spr-intro { align-items: stretch; flex-direction: column; }
    .spr-status-button { width: 100%; }
    .spr-main { width: min(100% - 18px, 1180px); padding-top: 18px; }
    .spr-card-head { align-items: flex-start; flex-direction: column; }
    .spr-form-actions { flex-direction: column-reverse; }
    .spr-btn { width: 100%; }
    .spr-detail-grid { grid-template-columns: 1fr; }
    .spr-detail-item.full { grid-column: auto; }
    .spr-footer { flex-direction: column; gap: 2px; }
}
