* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'SocoadaBody';
    src: url(/static/premia/TIPOGRAFIA/avenir-next/folder/AvenirNextLTPro-Regular.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SocoadaBody';
    src: url(/static/premia/TIPOGRAFIA/avenir-next/folder/AvenirNextLTPro-Bold.otf);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SocoadaBody';
    src: url(/static/premia/TIPOGRAFIA/avenir-next/folder/AvenirNextLTPro-It.otf);
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'SocoadaTitle';
    src: url(/static/premia/TIPOGRAFIA/good-times/goodtimesrg.ttf);
}

body {
    font-family: 'SocoadaBody', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
}

.cajaEscudo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    width: 80%;
    margin-top: 100px;
}

.escudoSoco {
    width: 95px;
}

.cajaTextos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-top: 70px; */
    text-align: center;
}

.cajaTextos p {
    width: 75%;
    font-size: 1.2em;
    font-weight: bold;
    color: #9F9F9F;
    margin-top: 20px;
    margin-bottom: 30px;
}

input {
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #184387;
    padding: 15px;
    outline: none;
    width: 100%;
    background-color: #EDEDED;

    font-family: 'SocoadaBody', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

#password {
    width: 100%;
}

#correo {
    width: 90%;
}	

input::placeholder {
    font-family: 'SocoadaBody', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.inputPassword {
    position: relative; 
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password {
    position: absolute;
    top: 40%;
    bottom: 50%;
    right: 4%;
    transform: translateY(-50%);
    cursor: pointer;
}

.alert {
    font-size: 1.8em;
    color: #9F9F9F;
    margin-top: 20px;
    text-align: center;
}

.instrucciones {
    font-size: 1em;
    color: #9F9F9F;
    margin-top: 5px;
    /* margin-bottom: 10px; */
    width: 83%;
    text-align: center;
    font-weight: bold;
}

.btnSiguiente {
    width: 75%;
    padding: 20px 20px;
    border: none;
    border-radius: 10px;
    background-color: #184387;
    color: white;
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 70px;
    margin-bottom: 30px;

    box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.btnSiguiente:hover {
    background-color: #0F2C5C;
    transform: scale(1.05);
}

.btnSiguienteValidar {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 75%;
    max-width: 500px;
    padding: 20px 20px;
    border: none;
    border-radius: 10px;
    background-color: #184387;
    color: white;
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 70px;
    margin-bottom: 30px;

    box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.btnSiguienteValidar:hover {
    background-color: #0F2C5C;
    transform: scale(1.05);
}

.btnGuardar {
    width: 75%;
    padding: 20px 20px;
    border: none;
    border-radius: 10px;
    background-color: #184387;
    color: white;
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 30px;

    box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.btnGuardar:hover {
    background-color: #0F2C5C;
    transform: scale(1.05);
}

.btnAtras {
    width: 60%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.2);
    color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(24, 67, 135, 0.3);
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 30px;

    box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.btnAtras:hover {
    background-color: rgba(30, 30, 30, 0.3);
    transform: scale(1.05);
}

@media screen and (min-width: 730px){
    p {
        width: 600px;
    }

    .inputPassword {
        width: 500px;
    }

    #correo {
        width: 500px;
    }

    .btnSiguiente {
        width: 520px;
    }

    .btnGuardar {
        width: 520px;
    }

    .btnAtras {
        width: 420px;
    }

    .instrucciones {
        width: 50%;
        font-size: 1.2em;
    }
}