.withdrawal-info {
    background: #f0f7ff;
    border-left: 4px solid #3a7bd5;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.withdrawal-info p {
    margin: 0 0 8px;
}

.withdrawal-info p:last-child {
    margin-bottom: 0;
}

/* Field rows */
.withdrawal-form > div {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    max-width: 480px;
}

.withdrawal-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.withdrawal-form input[type="text"],
.withdrawal-form input[type="email"],
.withdrawal-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

.withdrawal-form input[type="text"]:focus,
.withdrawal-form input[type="email"]:focus,
.withdrawal-form textarea:focus {
    outline: none;
    border-color: #3a7bd5;
    box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.15);
}

.withdrawal-form textarea {
    resize: vertical;
    min-height: 90px;
}

/* Confirm checkbox row */
.withdrawal-confirm-row {
    background: #fffbea;
    border: 1px solid #f0c040;
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 16px;
    max-width: 480px;
}

.withdrawal-confirm-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.withdrawal-confirm-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Verification field */
.withdrawal-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    max-width: 480px;
    box-sizing: border-box;
}

.verification-hint {
    font-size: 13px;
    color: #555;
    margin: 0 0 6px;
}
