
.sbw-form-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.sbw-label-desktop{
    font-family: "GT Eesti Pro Display", Sans-Serif;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

.sbw-label-mobile{
    font-family: "GT Eesti Pro Display", Sans-Serif;
    color: #54595f;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

.sbw-input-desktop{
    font-family: "Silk Serif", Sans-Serif !important;
    font-size: 25px !important;
    background-color: transparent;
    border: none !important;
    color: #ffffff;
    padding: 5px !important;
}

.sbw-input-mobile{
    font-family: "Silk Serif", Sans-Serif !important;
    font-size: 18px !important;
    background-color: transparent;
    border: none !important;
    color: #54595f;
    padding: 5px !important;
}

.sbw-fields {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

.sbw-form .field {
    flex: 1;
    padding: 0 1rem;
    border-right: 1px solid white;
    display: flex;
    flex-direction: column;
}

.sbw-form .field:last-child {
    border-right: none;
}

.submit {
    margin: 0;
}

#sbw-submit-desktop, #sbw-submit-mobile {
    background-color: #a79669;
    color: white;
    border: none !important;
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    height: 100%;
    transition: background-color 0.3s ease;
}

#sbw-submit:hover {
    background-color: #8c7c52;
}

/* Responsive: en móviles los campos se apilan en vertical */
@media (max-width: 768px) {

    .sbw-label-mobile{
        color: #54595f;
        font-size: 15px;
        font-size: 13px;
        font-weight: bold;
        letter-spacing: 3px;
    }

    .sbw-form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sbw-fields {
        flex-direction: column;
        width: 100%;
    }

    .sbw-form .field {
        flex: 1 1 100%;
        padding: 0.5rem 0;
        border-right: none; /* quita la línea separadora en móvil */
        border-bottom: 1px solid white; /* opcional: separador abajo */
    }

    .sbw-form .field:last-child {
        border-bottom: none;
    }

    .submit {
        width: 100%;
        margin-top: 1rem;
    }

    #sbw-submit {
        width: 100%; /* el botón ocupa todo el ancho */
    }
}


