/* Center the title and form together within the content column */
.withdrawal-index-index .page-title-wrapper,
.withdrawal-form-wrapper {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.withdrawal-form-wrapper .withdrawal-intro {
    margin-bottom: 30px;
}

/* Section blocks — flex column + gap gives even spacing with no margin-collapsing */
.withdrawal-form .fieldset {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 40px;
}

.withdrawal-form .fieldset > .legend {
    margin-bottom: 0;
}

.withdrawal-form .field {
    margin-bottom: 0;
}

.withdrawal-form .field > .label {
    display: block;
    margin-bottom: 6px;
}

/* Side-by-side rows */
.withdrawal-form .field-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.withdrawal-form .field-row > .field {
    flex: 1 1 0;
    min-width: 0;
}

.withdrawal-form .field-row > .field .control,
.withdrawal-form .field-row > .field .input-text {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .withdrawal-form .field-row > .field {
        flex-basis: 100%;
    }
}
