html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

@font-face {
    font-family: Avenir roman;
    font-weight: normal;
    src: url(../../../font/Avenir-Roman.ttf);
}

body {
    font-family: Avenir roman;
}


.centrar-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centrar-contenido-no-align {
    display: flex;

}

.contenedor-principal {
    flex-direction: column;
}

.contenedor-secundario {
    max-width: 2300px;
    flex-direction: column;
}


/* ------------------- Inicio Logo Internacional --------------- */

.image-logo-internacional {
    width: 200px;
}

@media (min-width:768px) {
    .image-logo-internacional {
        width: auto;
    }
}

/* ------------------- Fin Logo Internacional --------------- */


/* ------------------- Inicio Banner Acceder Cuenta --------------- */

.acceder-cuenta {
    margin-top: 22px;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #00A490 0%, #1DB9FA 100%);
    max-width: 2300px;
}

.acceder-cuenta p {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1;
}

@media(min-width:768px) {
    .acceder-cuenta p {
        font-size: 40px;
    }
}

@media(min-width:1000px) {
    .acceder-cuenta p {
        font-size: 48px;
    }
}

/* ------------------- Fin Banner Acceder Cuenta --------------- */


/* ------------------- Inicio Contenedor Datos --------------- */

.contenedor-datos {
    margin: 53px;
    min-width: 90%;
}

/* ------------------- Fin Contenedor Datos --------------- */



/* ------------------- Inicio Contenedor Formulario --------------- */

.contenedor-formulario {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    padding: 43px 23px 32px;
}

@media (min-width: 768px) {
    .contenedor-formulario {
        min-width: 586px;
    }
}


/* ------------------- Fin Contenedor Formulario --------------- */


/* ------------------- Inicio Contenedor Formulario --------------- */

.etiquetas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0px;
}

@media (min-width:768px) {
    .etiquetas {
        justify-content: center;

    }
}

.iconos {
    margin: 0 10px 0 0;
}

@media (min-width:768px) {
    .iconos {
        margin: 5px 10px 0 0;
    }
}

.input-sesion {
    display: flex;
    flex-direction: column;
}

.input-sesion input {
    width: 100%;
    height: 38px;
    border-radius: 30px;
    border:none;
    color: #808080;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    padding-left: 15px;
}

.input-sesion input:focus{
    outline: none;
    border: 2px solid #4A90E2;
    border-radius: 30px; 
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5); 
}


@media (min-width:768px) {
    .input-sesion input {
        width: 450px;
    }
}


.mantener-sesion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

.mantener-sesion input[type="checkbox"] {
    transform: scale(1.6);
    /* Cambia el número para ajustar el tamaño */
}

.mantener-sesion p {
    padding-top: 15px;
    margin-left: 10px;
    color: #03547E;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}


.btn-logearte {
    width: 273px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 35px;
    background: #F07F1E;

}

.iniciar-sesion {
    padding-top: 3px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}



/* ------------------- Fin Contenedor Formulario --------------- */

.restaurar-contrasena {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.restaurar-contrasena p,
.restaurar-contrasena a {
    color: #00A490;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.restaurar-contrasena a {
    text-decoration: underline;
    margin-left: 10px;
}


@media (min-width: 1280px) and (max-width: 1350px) {
    .image-logo-internacional {
        width: 90%;
    }

    .acceder-cuenta {
        margin-top: 15px;
    }

    .acceder-cuenta p {
        font-size: 40px;
    }


    .contenedor-datos {
        margin: 20px;
        min-width: 90%;
    }
}