/* =========================
   DTP FORM – Base styles
   ========================= */

#dtp-form {
    /* Color principal de la web */
    color: currentColor;
}

/* =========================
   BOTONES
   ========================= */

#dtp-form button,
#dtp-form input[type="submit"],
#dtp-form input[type="button"] {

    background: none;
    color: currentColor;

    border: 1px solid currentColor;
    border-radius: 30px;

    padding: 0.6em 1.4em;

    font-size: 14px;
    line-height: 1.4;

    cursor: pointer;

    box-shadow: 0 0 10px currentColor;

    transition:
        box-shadow 0.2s ease,
        transform 0.1s ease;
}

#dtp-form button:hover,
#dtp-form input[type="submit"]:hover {
    box-shadow: 0 0 14px currentColor;
}

#dtp-form button:active,
#dtp-form input[type="submit"]:active {
    transform: translateY(1px);
}

/* =========================
   INPUTS / SELECTS / TEXTAREA
   ========================= */

#dtp-form input,
#dtp-form select,
#dtp-form textarea {
    
    width: 100%;
    box-sizing: border-box;

    color: currentColor;
    font-size: 14px;
    line-height: 1.4;
    font-family: inherit;


    background: none;

    border: 1px solid currentColor;
    border-radius: 0px;

    padding: 0.4em 0.6em;

    box-shadow: none;
}

/* Evitar estilos agresivos de Elementor */
#dtp-form input:focus,
#dtp-form select:focus,
#dtp-form textarea:focus {
    outline: none;
    box-shadow: 0 0 6px currentColor;
}

/* =========================
   CHECKBOXES & RADIOS
   ========================= */

#dtp-form input[type="checkbox"],
#dtp-form input[type="radio"] {

    accent-color: currentColor;

    width: 1em;
    height: 1em;

    margin-right: 0.5em;

    cursor: pointer;
}

/* Alinear texto con inputs */
#dtp-form label {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;

    font-size: 14px;
    line-height: 1.4;

    cursor: pointer;
}
