/* Breite/Abstände kommen aus dem globalen Content-Bereich (bhf-gutter) +
   userClass "bh-centered"; das Element setzt daher keine eigene Breite. */
.el-withdrawal {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
}

.el-withdrawal-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.el-withdrawal-row {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.el-withdrawal-row .el-withdrawal-field {
    flex: 1 1 200px;
}

.el-withdrawal-field {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.el-withdrawal-label {
    font-weight: 600;
}

.el-withdrawal-hint {
    font-size: 0.85em;
    opacity: 0.75;
}

.el-withdrawal-field input,
.el-withdrawal-field textarea {
    width: 100%;
    padding: 0.6em 0.8em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font: inherit;
}

/* Honeypot – für Menschen unsichtbar */
.el-withdrawal-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Einfacher, an typische Shop-CTAs angelehnter Default-Button */
.el-withdrawal-submit {
    align-self: flex-start;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    cursor: pointer;
    padding: 0.85em 2em;
    background: #222;
    color: #fff;
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 4px;
    transition: opacity 0.15s ease;
}

.el-withdrawal-submit:hover {
    opacity: 0.85;
}

.el-withdrawal-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
