.btn-submit {
    background: #002C6C !important;
    border-radius: 15px !important;
    color: white !important;
    transition: background-color 0.3s ease !important;
}

.btn-submit:hover {
    background: #001A4C !important;
     color: white !important;
}

.background-color-msg{
    background-color: #002c6c !important;
}



.left-side {
    background-color: #ffffff !important;
}

.title-color {
    color: #002C6C !important;
}



.p-color{
    color: #000000;
}

.a-color{
    color: #00799e;
}

.scrollable-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.hidden{
    display: none !important;
}

.secondary-btn{
    background-color: #F26334 !important;
    border-radius: 15px !important;
    color: white !important;
    transition: background-color 0.3s ease !important;
}

.secondary-btn:hover {
    background: #a84226 !important;
     color: white !important;
}

.bold.p-color {
    color: #002C6C; /* or your desired initial color */
    font-weight: bold;
}

.bold.p-color:hover {
    color: #F26334; /* Change to desired hover color */
    text-decoration: underline;
}

.centered-title {
    text-align: center;
}

.glow {
    animation: glow 1s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #002D68;
    }
    to {
        box-shadow: 0 0 20px #002D68;
    }
}

.container-info {
    position: absolute;
    bottom: 0;
    padding-bottom: 100px;
}

.typography-gothamSS {
    font-family: 'GothamSSm', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
}

.typography-gotham{
    font-family: 'Gotham', sans-serif;
    font-weight: 325 !important;
    font-size: 14px;
    line-height: 16.8px;
}

.gray{
    color: rgba(128, 128, 128, 0.7);
}

.gray2{
    color: #454545
}

.color-blue{
    color: #002D68;
}

.btn-orange{
    width: 446px;
    height: 42px;
    border-radius: 3px;
    background-color: #E65B2A;
    color: white;
}


.btn-swal{
    width: 200px;
    height: 42px;
    border-radius: 3px;
    background-color: #E65B2A;
    color: white;
}

.form-select.form-select-solid {
    background-color: var(--bs-gray-100);
    color: var(--bs-gray-700);
    transition: color .2s ease;
    border: 2px solid #F4F4F4 !important;
}

.btn-swal:hover{
    background: #a84226 !important;
     color: white !important;
}

.btn-blue{
    width: 446px;
    height: 42px;
    border-radius: 3px;
    background: #002C6C;
    color: white;
}

.btn-blue:hover{
     background: #001A4C !important;
     color: white !important;
}

.label-btn-orange{
    font-family: 'Gotham', sans-serif;
    font-weight: 600 !important;
    font-size: 14px;
    line-height: 16.8px;
}


.btn-orange:hover {
    background: #a84226 !important;
     color: white !important;
}

.input {
    width: 446px !important;
    height: 42px;
    border-radius: 3px;
    border: 2px solid #F4F4F4;
}

.input-checkbox{
    width: 27px;
    height: 26px;
    border-radius: 10px;
    border: 2px solid #F4F4F4;
}

/* --- INICIO: CÓDIGO PARA RESPONSIVIDAD PERSONALIZADA --- */

@media (max-width: 1248px) and (min-height: 834px) {

    /* 1. Forzamos el contenedor principal a apilar los elementos verticalmente. */
    .d-flex.flex-lg-row.flex-column-fluid {
        flex-direction: column !important;
    }

    /* 2. Hacemos que cada una de las dos secciones (imagen y formulario) ocupe el 100% del ancho. */
    .d-flex.flex-column-fluid > .bgi-size-cover,
    .d-flex.flex-column-fluid > .card {
        width: 100% !important;
    }
}

/* --- FIN: CÓDIGO PARA RESPONSIVIDAD PERSONALIZADA --- */

/* Sidebar fijo a pantalla completa */
.auth-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0B1B2B; /* color de relleno a los lados cuando 'contain' */
}

/* La imagen llena el panel */
.auth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* se recorta normalmente */
  object-position: center;
}

/* En pantallas muy verticales, evita el recorte */
@media (max-aspect-ratio: 4/5) {
  .auth-image { object-fit: contain; } /* muestra todo, sin recorte */
}

/* Solo el formulario scrollea */
.form-column {
  height: 100vh;
  overflow-y: auto;
}

.btn-catalog {
    background-color: #E65B2A;
    color: white;
}

.btn-catalog:hover {
    background-color: #a84226 !important;
    color: white !important;
}


.btn-ingresar {
    /* Estilos del botón (de .btn-orange) */
    width: 446px;
    height: 42px;
    border-radius: 3px;
    background-color: #E65B2A;
    color: white;

    /* Estilos del texto (de .label-btn-orange) */
    font-family: 'Gotham', sans-serif;
    font-weight: 600 !important;
    font-size: 14px;
    line-height: 16.8px;
}

/* Replicamos también el hover */
.btn-ingresar:hover {
    background: #a84226 !important;
    color: white !important;
}