h1 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0D5973;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


input,
select,
textarea {
    min-width: 10px !important;
    color: #555 !important;
    border: 1px solid #d4d4d4;
    font-size: 15px !important;
}

/* FOCUS INPUT */
input:focus {
    outline: 3px solid #0D5875 !important;
    box-shadow: 0 0 0 3px rgba(13, 88, 117, 0.45) !important;
    color: #0D5875 !important;
    font-weight: 500;

}


/* Icono cambia cuando el input tiene foco */
.container-buscador:focus-within .icono-buscador {
    color: #0D5875 !important;
}


/* TEXTAREA */
textarea {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    resize: none !important;
    border: 1px solid #0D5875;
}

/* FOCUS TEXTAREA (más fuerte) */
textarea:focus {
    outline: 3px solid #0D5875 !important;
    box-shadow: 0 0 0 3px rgba(8, 58, 77, 0.55) !important;
    color: #0D5875 !important;
    font-weight: 500;
}

/* FOCUS SELECT */
select:focus {
    outline: 3px solid #0D5875 !important;
    box-shadow: 0 0 0 3px rgba(13, 88, 117, 0.45) !important;
    color: #0D5875;
}

/* PLACEHOLDER */
input::placeholder,
select::placeholder,
textarea::placeholder {
    font-size: 14px;
    color: #888;
}

input:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
    color: #0D5875;
}



/* ESTILO PARA BOTON 1 */
.boton-1 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
    padding: 0.625rem 1rem;
    /* py-2.5 px-4 */
    background-color: #0D5973;
    color: #ffffff;
    font-size: 14px;
    /* text-sm */
    font-weight: 500;
    border-radius: 0.5rem;
    /* rounded-lg */
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    /* shadow-sm */
    transition: background-color 0.2s ease-in-out;
}

/* Hover */
.boton-1:hover {
    background-color: #053444;
}

.mensajeError {
    color: #db0000;
    font-size: 13px !important;
    margin-top: 4px !important;
}


.container-principal {
    border-radius: 25px;
    padding: 20px;
    height: 100%;
    margin: auto;
}


.container-principal {
    padding: 0;
}

@media screen and (min-width:1300px) {
    .container-principal {
        padding: 20px;
    }
}


.container-enlace {
    display: none;
}

@media screen and (min-width: 800px) {
    .container-enlace {
        display: inline-block;
    }

}







.card-badge--bloqueado {
    background: rgba(251, 191, 36, 0.18);
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: #fbbf24;

    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    top: 14px;
    right: 14px;
}



.btn-ingresar--disabled {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, gap 0.2s ease;
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    gap: 7px;
    pointer-events: none;
}

.btn-ingresar--disabled:hover {
    background: #e2e8f0;
    color: #94a3b8;
    gap: 7px;
}

.btn-ingresar--disabled svg {
    width: 13px;
    height: 13px;
}