@font-face {
    font-family: 'NeoSansPro-Bold';
    src: url('../fonts/NeoSansPro/NeoSansProBold.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NeoSansPro-Regular';
    src: url('../fonts/NeoSansPro/NeoSansProRegular.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NeoSansPro-Italic';
    src: url('../fonts/NeoSansPro/NeoSansProItalic.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}


input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    pointer-events: none;
    position: absolute; /* Opcional: evitar que ocupe espacio */
}

input[type="password"]::-ms-reveal {
    display: none;
}


input[type="password"] {
    -webkit-text-fill-color: rgba(32, 61, 124, 1);
    color: rgba(32, 61, 124, 1);
    font-size: 16px;
    opacity: 1;
    caret-color: rgba(32, 61, 124, 1);
}

html {
  font-size: 14px;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*MODALS*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Estilos para el contenido del modal */
.modal-content {
    margin: 12% auto;
    padding: 20px;
    padding-top: 100px;
    width: 80%;
    max-width: 875px;
    max-height: 448px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    opacity: 1;
    background-color: #FFFFFF;
}

/* Estilos para el botón de cerrar (X) */
.close {
    position: absolute;
    color: #aaa;
    font-size: 30px;
    /*font-weight: bold;*/
    top: 1%;
    left: 95%;
    opacity: 1;
    color: rgba(61, 93, 171, 1);
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/*SPINNER*/

.spinner-bg {
    /*display: none;*/
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.loader {
    margin: 0 auto !important;
    display: flex !important;
    margin-top: 50vh !important;
    width: 48px;
    height: 48px;
    border: 5px solid #e7e7e7;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    animation: pulse 1s linear infinite;
}

    .loader:after {
        content: '';
        position: absolute;
        width: 48px;
        height: 48px;
        border: 5px solid #e7e7e7;
        border-radius: 50%;
        display: inline-block;
        box-sizing: border-box;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: scaleUp 1s linear infinite;
    }

.error-input-field {
    border: 2px solid #FF6565 !important;
}


.password-show-icon {
    position: absolute;
    left: 870px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
}

.password-hide-icon {
    position: absolute;
    left: 870px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
    display: none;
}

@keyframes scaleUp {
    0% {
        transform: translate(-50%, -50%) scale(0)
    }

    60%, 100% {
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes pulse {
    0%, 60%, 100% {
        transform: scale(1)
    }

    80% {
        transform: scale(1.2)
    }
}

/*SPINNER*/


/*MEDIA QUERY*/
@media (max-width: 1399px) {

    .password-show-icon {
        left: 780px !important;
    }

    .password-hide-icon {
        left: 780px !important;
    }
}

@media (max-width: 1199px) {

    .password-show-icon {
        left: 690px !important;
    }

    .password-hide-icon {
        left: 690px !important;
    }
}

@media (max-width: 991px) {

    .password-show-icon {
        left: 570px !important;
    }

    .password-hide-icon {
        left: 570px !important;
    }
}

@media (max-width: 767px) {

    .password-show-icon {
        left: 480px !important;
    }

    .password-hide-icon {
        left: 480px !important;
    }
    .close {
        left: 92%;
    }
}

@media (max-width: 575px) {

    .password-show-icon {
        left: 90% !important;
    }

    .password-hide-icon {
        left: 90% !important;
    }
    
}

@media (max-width: 557px) {

    .close {
        left: 88%;
    }
}