﻿.withdrawal-page {
    padding: 64px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.withdrawal-card {
    max-width: 940px;
    margin: 0 auto;
    padding: 38px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    box-shadow: 0 24px 70px rgba(16, 24, 40, .12);
}

.withdrawal-card__header {
    margin-bottom: 30px;
    text-align: center;
}

.withdrawal-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef4ff;
    color: #0b2447;
    font-size: 13px;
    font-weight: 600;
}

.withdrawal-card__header h1 {
    margin: 0 0 12px;
    color: #202124;
    font-size: clamp(1.1rem, 2.8vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.withdrawal-card__header p {
    max-width: 600px;
    margin: 0 auto;
    color: #5f6368;
    font-size: 0.9rem;
    line-height: 1.2rem;
}

.withdrawal-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
}

.withdrawal-alert--success {
    color: #14532d;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
}

.withdrawal-alert i {
    font-size: 21px;
    margin-top: 1px;
}

.withdrawal-validation {
    margin-bottom: 18px;
    color: #b42318;
    font-weight: 700;
}

.withdrawal-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.withdrawal-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.withdrawal-form__group--full {
    grid-column: 1 / -1;
}

.withdrawal-form__group label {
    color: #202124;
    font-size: 1rem;
    font-weight: 500;
}

.withdrawal-form__group input,
.withdrawal-form__group textarea {
    width: 100%;
    border: 1px solid #dbe3ec;
    border-radius: 16px;
    padding: 14px 16px;
    color: #202124;
    font-size: 1rem;
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .withdrawal-form__group input:focus,
    .withdrawal-form__group textarea:focus {
        border-color: #0b2447;
        box-shadow: 0 0 0 4px rgba(11, 36, 71, .10);
    }

.withdrawal-form__group textarea {
    resize: vertical;
    min-height: 130px;
}

.withdrawal-field-error {
    color: #b42318;
    font-size: 13px;
    font-weight: 500;
}

.withdrawal-field-error--check {
    display: block;
    margin-top: 6px;
}

.withdrawal-form__notice {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    padding: 18px;
    border-radius: 18px;
    background: #f6f8fb;
    border: 1px solid #e5ebf2;
}

    .withdrawal-form__notice i {
        color: #0b2447;
        font-size: 1rem;
        margin-top: 2px;
    }

    .withdrawal-form__notice p {
        margin: 0;
        color: #4b5563;
        font-size: 14px;
        line-height: 1.6;
    }

.withdrawal-form__check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 24px;
}

    .withdrawal-form__check input {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        accent-color: #0b2447;
    }

    .withdrawal-form__check label {
        color: #202124;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.4;
    }

.withdrawal-form__actions {
    margin-top: 28px;
    text-align: center;
}

.withdrawal-form__btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 34px;
    background: #0b2447;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(11, 36, 71, .28);
    transition: all .2s ease;
}

    .withdrawal-form__btn:hover {
        background: #061a35;
        transform: translateY(-1px);
    }

@media (max-width: 767.98px) {
    .withdrawal-page {
        padding: 34px 0;
    }

    .withdrawal-card {
        padding: 24px;
        border-radius: 22px;
    }

    .withdrawal-form__grid {
        grid-template-columns: 1fr;
    }

    .withdrawal-form__btn {
        width: 100%;
    }
}
