/*---------------------------------------------------------------------------------------------------------------
   AUTOR          : DIEGO BUSTOS PEÑA
   FECHA CREACIÓN : 09-06-2026
   DESCRIPCIÓN    : CSS DEL FORMULARIO COMO TAL
----------------------------------------------------------------------------------------------------------------*/

/* LABELS */
label {
    text-align  : left !important;
    font-weight : bold;
}

.form-label-uct {
    font-size     : .95rem;
    font-weight   : 700;
    color         : #1a202c;
    margin-bottom : .6rem;
    display       : block;
}

.obligatorio,
.required-star {
    color : red;
}

/* HELPERS */
.mayuscula {
    text-transform : uppercase;
}

.oculto {
    display : none;
}

.custom-input-size {
    width : 300%;
}

/* INPUTS */
.form-control-uct,
.form-select-uct {
    border        : 2px solid var(--uct-border);
    border-radius : var(--uct-radius-input);
    padding       : .65rem 1rem;
    font-size     : .93rem;
    transition    : all .2s ease;
}

.form-control-uct:focus,
.form-select-uct:focus {
    border-color : var(--uct-blue);
    box-shadow   : 0 0 0 3px rgba(26,111,181,.12);
    outline      : none;
}