#registrationForm label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
    display: block;
}

#registrationForm input,
#registrationForm select {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

#registrationForm button[type="submit"] {
    background: #b25538;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

#registrationForm button[type="submit"]:hover {
    background: #9a472f;
}

#registrationForm button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.help-link {
    display: block;
    font-size: 0.9rem;
    color: #0070ba;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

.bank-details {
    margin-top: 1rem;
    text-align: left;
    font-size: 0.95rem;
    color: #333;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
}

.bank-details p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.payment-card.bank-transfer {
    border: 2px solid #007bff;
}

.payment-card.bank-transfer:hover {
    border-color: #0056b3;
    background-color: #f8f9ff;
}

/* Desktop: add spacing between bank label and value */
@media (min-width: 768px) {
    .bank-detail-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}
