/* Ejemplo en tu archivo CSS */
@font-face {
    font-family: 'Fuente';
    src: url('../Fonts/AlpinaSans-Semibold_2020-03-23.otf')format('opentype');
}


:root {
    --primary-color: rgba(70, 21, 108, 1);
    --secondary-color: rgba(255, 255, 221, 1);
    --terteary-color: black;
    --quaternary-color: rgba(195, 132, 244, 1);
    --quinteary-color: rgba(217, 210, 223, 1);
    --font-family-alpinasemibold: 'Fuente',alpinasemibold;
}

/* estilos para la pagina del index.html */
body, html {
    overflow-x: hidden !important;
   }

body {
    background-image: url('../images/Wallpaper.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 60px;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: var(--font-family-alpinasemibold);
}

.userAlpina {
    color: var(--primary-color);
}
.form-control-lg {
    font-family: var(--font-family-alpinasemibold);
    background-color: var(--quinteary-color);
    font-size: 1.25rem;
    outline-color: none;
    border-radius: 10px;
    color: var(--quaterneary-color);
}
    .form-control-lg:focus {
        border-color: var(--quaternary-color);
        outline-color: var(--quaternary-color);
        background-color: var(--quinteary-color);
        
    }
    .form-control-lg:hover {
        background-color: var(--quaternary-color); /* Cambia el color de fondo cuando se pasa el mouse */
    }

    .img-logo {
        margin-top: 20px;
        margin: 30px;
        width: 200px;
        height: auto;
        
    }

    
/*.header {
    display: none;
}

    .frame {
        display: none;
    }

    .header{
        display: block;
    }*/

/*@media (max-width: 991px) and (min-height: 844px){
    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
    }
}

@media screen and (min-width: 1440px) {
    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
    }
}*/

/* Estilos cuando el bot�n reset e itsm*/



/*estilos para usuario.html */
.full-height {
    height: 100vh;
    display: flex;
    border-style: solid;
}

.d-flex-center {
    display: flex;
    border-style: solid;
    border: groove;
    align-items: center;
    justify-content: center;
}

.P_B1 {
    width: 90%;
    height: auto;
    margin: 2rem;
}

.btn-resetpassword {
    font-family:var(--font-family-alpinasemibold);
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    margin-top: 1rem;
    border-radius: 10px;
    font-weight:bolder;
}
    .btn-resetpassword:hover {
        background-color: var(--secondary-color);
        border-color: var(--quaternary-color);
        color: var(--primary-color);
        outline-color: var(--quaternary-color);
       
    }
/*centrar el div del objeto ingresar usuario*/
.form-containerInsert {
    display: flexbox;
    width: 80%;
    margin-top: 20px;
    margin-left: 30%;
}

#p-validatedInputUser, #p-validatedInputPhone {
    color: red;
    display: none;
    font-family: var(--font-family-alpinasemibold);
    font-size: 15px;
}
/*validacion del codigo en cajas de texto*/
#hdn-phone {
    color: var(--primary-color);
    font-size: 22px;
}
.codeInput {
    font-family: var(--font-family-alpinasemibold);
    display: flexbox;
    background-color: var(--quinteary-color);
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    outline-color: var(--primary-color);
}

.code-margin {
    margin-right: 10px; /* Espacio uniforme entre los campos */
}

.code-input-container {
    max-width: 300px; /* Ajusta un ancho máximo que permita a los 6 inputs caber */
    margin: 0 auto;
    /* Usa un poco de espacio uniforme entre los elementos en lugar de margenes fijos si prefieres gap */
    /* gap: 10px; */
}



@media (max-width: 400px) {
    .codeInput {
        font-size: 0.875rem;
        background-color: var(--quinteary-color);
        width: 2.5rem;
        height: 2.5rem;
        text-align: center;
        outline-color: var(--primary-color);
        margin: 0 0.2rem;
    }

    .code-input-container {
        justify-content: space-between; /* O center, si tienes mucho espacio */
        width: 100%; /* Asegura que ocupe todo el ancho */
        max-width: 250px; /* Limita el ancho total para que se vea centrado y no se estire demasiado */
        margin: 0 auto; /* Centra el bloque .code-input-container */
    }
    

    .logo{
        margin-top:60px;
        justify-content:center;
    }
}


/*parametros boton enviar codigo*/

.btn-sendCode {
    width: 90%;
    margin-left: 5%;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
}

.btn-sendCode:hover {
background-color: var(--secondary-color);
border-color: var(--quaternary-color);
color: var(--primary-color);
outline-color: var(--quaternary-color);
}
/*contenedor de enviar codigo*/

/*tama�o texto principal*/
/*#btn-sendPassword {
    margin-left:10%;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}*/
.p-send {
    color: var(--primary-color);
    font-size: 22px;
}
.btn-sendPassword {
    width: 90%;
    margin-left: 5%;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
}

    .btn-sendPassword:hover {
        background-color: var(--secondary-color);
        border-color: var(--quaternary-color);
        color: var(--primary-color);
        outline-color: var(--quaternary-color);
    }
/*aqui contenido pagina de newpassword*/
.form-containerPassword {
    display: flexbox;
    width: 90%;
    margin-top: 20px;
    margin-left: 27%;
}

.requisitos {
    margin-top: 10px;
}

    .requisitos p {
        font-family: var(--font-family-alpinasemibold);
        font-size: 13px; /* Ajustar tama�o de fuente */
        margin: 3px 0; /* Ajustar espaciado vertical entre elementos */
        margin-left: 10%;
    }

/*boton de volver en la vista errorMessage*/
.btn-sendpassword2 {
    display: flexbox;
    font-size: 1rem;
    width: 70%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
    font-family: var(--font-family-alpinasemibold);
}
 .btn-sendpassword2:hover {
    background-color: var(--secondary-color);
    border-color: var(--quaternary-color);
    color: var(--primary-color);
    outline-color: var(--quaternary-color);
 }


#div-timePassword {
    display: flex;
    justify-content: center;
    text-align: justify;
    font-size: 18px;
    color: var(--primary-color);
    min-width: 30%;
    max-width: 50%;
    margin-left: 4%;
    margin-right: 4%;
}
    /* Ajusta el tama�o del captcha */
    .g-recaptcha {
    transform: scale(1.2);
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 10px;
    /* margin-left:-20%;*/
}

@media (max-width: 700px) {
    .g-recaptcha {
        transform: scale(0.8);
    }
}

#div-timer {
    position: absolute;
    font-size: 25px;
    color: var(--primary-color);
    text-align: center;
    margin-left: 120px;
}

#div-errorMessage {
    color: red;
    font-family: var(--font-family-alpinasemibold);
    font-size: 15px;
    margin-left: 30px;
}

#lbl-seconds {
    display: flex;
    font-size: 25px;
    margin-left: 200px;
    color: var(--primary-color);
    font-size: var(--font-family-alpinasemibold);
}

#btn-returnPasswordReset {
    display: flexbox;
    font-size: 1rem;
    width: 40%;
    background-color: var(--primary-color);
    color: var(--secundary-color);
    margin-left: 0%;
    border-radius: 10px;
}
#password{
    font-size:20px;
    color:var(--primary-color);
}

.validatepassword {
    font-size: 20px;
    color: var(--primary-color);
}
.cls-PrintErrorMessage {
    word-wrap: break-word;
    display: block;
    text-align: center;
    max-width: 300px;
    font-size: 20px;
    color: red;
    font-family: var(--font-family-alpinasemibold);
}

.ant-input-suffix {
    top: 20%;
    margin-right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.anticon-eye-invisible {
    display: none;
}

/* Loader */
/* Loader de carga inicial */
.container-loader {
    margin-block-start: 0;
    z-index: 9999;
    transition: all 1.5s;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation: loader 1.5s infinite ease-in-out;
}

.loader {
    color: var(--primary-color);
    font-size: 13px;
    position: relative;
    animation-delay: -0.16s;
}

    .loader:before,
    .loader:after {
        content: "";
        position: absolute;
        top: 0;
    }

    .loader:before {
        left: -3.5em;
        animation-delay: -0.32s;
    }

    .loader:after {
        left: 3.5em;
    }

@keyframes loader {

    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.women {
    position: fixed;
    bottom: 0%;
    height: auto;
    right: 4%;
    max-width: 200px;
    min-width: 130px;
    width: 22%;
}