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

body, html {
    margin: 0;
}

@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 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'SocoadaBody', sans-serif;
    font-weight: bold;
    max-width: 100vw;
    background-color: #F9F9F9;
}

body::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #00000042;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 7%;
    margin-top: 5%;
}

.escudoCompleto {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #9d9d9d;
}

.escudoCompleto img {
    width: 65%;
    max-width: 450px;
}

.bienvendiaTitulo {
    font-family: 'SocoadaTitle', sans-serif;
    font-size: 0.9em;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 90%;
    text-align: center;
}

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%;
}

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

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

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

.btnInicioSesion {
    width: 90%;
    background-color: #E31E1D;
    color: white;
    font-family: 'SocoadaBody', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 10px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;

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

.btnInicioSesion:hover {
    background-color: #c21818;
    transform: scale(1.05);
}

.changePassword {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #9d9d9d;
    width: 90%;
    max-width: 400px;
}

.changePassword p {
    color: #184387;
    font-weight: bold;
}

.changePassword a {
    color: #E31E1D;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.registrate {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    width: 90%;
    max-width: 400px;
}

.registrate p {
    color: #184387;
    font-weight: bold;
}

.registrate a {
    color: #E31E1D;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

@media screen and (min-width: 800px) {
    form {
        margin: 5%;
    }
    
    .bienvendiaTitulo {
        width: 70%;
    }

    input {
        width: 450px;
    }

    .inputPassword {
        width: 450px;
    }

    .btnInicioSesion {
        width: 400px;
    }
    
}