/* Estilos personalizados para el formulario comercial */
.form-custom {
    /* background: #fff; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 32px rgba(0,0,0,0.10); */
    padding: 15px 25px 25px 15px;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}
.form-custom label {
    font-weight: 700;
    color: #030923;
    /* font-size: 18px; */
    margin-bottom: 5px;
    display: block;
    text-align: left;
}
.form-custom .required {
    color: #ff6700;
    font-weight: 700;
    font-size: 14px;
}
.form-custom .optional {
    color: #888;
    font-size: 14px;
}
.form-custom .form-control {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 17px;
    padding: 10px 14px;
    margin-bottom: 0;
}
.form-custom .servicios-radio {
    margin-top: 10px;
    margin-bottom: 10px;
}
/* .form-custom .form-check {
    margin-bottom: 8px;
} */
.form-custom .form-check-input[type="radio"] {
    accent-color: #ff6700;
    margin-right: 8px;
}
.form-custom .form-check-label {
    font-size: 16px;
    color: #030923;
    font-weight: normal;
    margin-left: 5px;
    margin-top: 5px;
}
.form-check{
    padding-left: 2.5rem !important;
}
.privacidad-check {
    margin-top: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.privacidad-link {
    color: #ff6700;
    text-decoration: none;
    font-weight: 700;
}
.btn-form {
    background: #222;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 25px;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-form:hover {
    background: #ff6700;
    color: #fff;
}
@media (max-width: 768px) {
    .form-custom {
        padding: 20px 8px;
    }
    .btn-form {
        font-size: 18px;
    }
}
