/* ============================================================
   MANUAL BANK TRANSFER CONFIRMATION PAGE (Bank Mandiri / Bank Jago)
   Standalone page (gateway-actions/bank*.blade.php) — reuses
   .sfc-form-* and .sfc-co__pay-btn from checkout for continuity.
   ============================================================ */
.sfc-bt {
    background: #EAF3EE;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 56px 20px;
}
.sfc-bt__container { width: 100%; max-width: 560px; margin: 0 auto; }

.sfc-bt__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 20px 50px rgba(0, 43, 22, 0.08);
    padding: 32px;
}
.sfc-bt__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.sfc-bt__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    text-decoration: none;
}
.sfc-bt__brand-logo { height: 38px; width: auto; display: block; }
.sfc-bt__brand-logo--bank { height: 26px; }
.sfc-bt__brand-divider { width: 1px; height: 26px; background: #E1EAE4; flex: 0 0 auto; }
.sfc-bt__head-text { flex: 1 1 auto; min-width: 0; }
.sfc-bt__step {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1B7A47;
    margin-bottom: 6px;
}
.sfc-bt__head-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0D2A1D;
    margin: 0 0 8px;
}
.sfc-bt__switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #1B7A47;
    text-decoration: none;
}
.sfc-bt__switch:hover { text-decoration: underline; }

.sfc-bt__info {
    display: flex;
    gap: 14px;
    background: #EAF3EE;
    border: 1px solid rgba(13, 61, 45, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 26px;
}
.sfc-bt__info-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #0D3D2D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sfc-bt__info-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.75;
    color: #1B3A2D;
}
.sfc-bt__info-text b,
.sfc-bt__info-text strong { color: #0D3D2D; }

.sfc-bt__error { display: block; margin-top: 6px; font-size: 12px; color: #DC2626; }
.sfc-bt__hint { display: block; margin-top: 6px; font-size: 11.5px; color: #9CA3AF; }

.sfc-bt__file {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px dashed #E5E7EB;
    border-radius: 12px;
    padding: 11px 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s;
}
.sfc-bt__file:hover { border-color: #0D3D2D; }
.sfc-bt__file svg { flex: 0 0 auto; color: #9CA3AF; }
.sfc-bt__file-text {
    flex: 1 1 auto;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #6B7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sfc-bt__file-btn {
    flex: 0 0 auto;
    background: #EAF3EE;
    color: #0D3D2D;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 9999px;
}
.sfc-bt__file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.sfc-bt__submit { margin-top: 6px; }

.sfc-bt__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #588268;
    text-align: center;
}
.sfc-bt__secure svg { flex: 0 0 auto; }

@media (max-width: 575px) {
    .sfc-bt {
        display: block;
        min-height: 0;
        padding: 28px 14px 40px;
    }
    .sfc-bt__card { padding: 22px; border-radius: 16px; }
    .sfc-bt__info { padding: 14px 16px; }
    .sfc-bt__head { flex-wrap: wrap; gap: 12px; }
    .sfc-bt__brand-logo { height: 30px; }
    .sfc-bt__brand-logo--bank { height: 22px; }
    .sfc-bt__head-text h1 { font-size: 18px; }
}

