﻿/* inputs, selects y textareas con tu estilo */
.input,
.select,
.textarea {
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 0 12px;
    outline: none;
    background: var(--panel, #fff);
    color: var(--text, #111827);
}

/* textarea */
.textarea {
    min-height: 84px;
    resize: vertical;
    padding: 10px 12px; /* se ve mejor en textarea */
    height: auto;
}

    /* focus EN EL MISMO ELEMENTO */
    .input:focus,
    .select:focus,
    .textarea:focus {
        border-color: rgba(17,24,39,.25);
        box-shadow: 0 0 0 3px rgba(17,24,39,.06);
    }




/* select múltiple */
.select[multiple] {
    height: auto; /* libera la altura */
    max-height: 120px; /* ajusta a tu gusto */
}
