/* Estilo para a tela única de Cancelamento / Saque */
:root {
    --bg: #07100d;
    --panel: #0f1413;
    --muted: #9aa0a6;
    --neon: #12e08e;
    --accent: linear-gradient(90deg, #1fe59b 0%, #10c776 100%);
    --radius: 14px;
    font-family: 'Montserrat', sans-serif;
    color-scheme: dark;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: #e9f7ef;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

/* Container central */
.cancel-screen {
    width: 100%;
    max-width: 420px;
}

/* Card (parecido ao modal do print) */
.card {
    background: linear-gradient(180deg, rgba(10, 12, 11, 0.98), rgba(12, 14, 13, 0.98));
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* close X */
.card-close {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: #d9efe3;
    cursor: pointer;
}

/* Title */
.card-title {
    text-align: center;
    color: var(--neon);
    margin: 4px 36px 12px 0;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 800;
}

/* instructions bullets */
.instructions ul {
    margin: 0 0 12px 18px;
    padding: 0;
    color: #79f6a8;
    font-size: 13px;
    line-height: 1.35;
}

/* form layout */
.withdraw-form label {
    display: block;
    margin-top: 10px;
    color: #cfe7d9;
    font-weight: 600;
    font-size: 13px;
}

.withdraw-form input[type="number"],
.withdraw-form input[type="password"],
.withdraw-form select {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: #eaf7ef;
}

/* note and balance */
.modal-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
}

.modal-balance-line {
    margin-top: 12px;
    color: #b9f3c8;
    font-weight: 700;
}

/* actions */
.actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-end;
    align-items: center;
}

.btn {
    cursor: pointer;
    border: none;
    padding: 10px 16px;
    border-radius: 22px;
    font-weight: 700;
}

.btn.ghost {
    background: rgba(0, 0, 0, 0.35);
    color: #e6efe7;
}

.btn.primary {
    background: var(--accent);
    color: #002012;
    min-width: 140px;
}

/* responsive */
@media (max-width:420px) {
    .card {
        padding: 14px;
    }

    .card-title {
        font-size: 16px;
    }
}