*{
    padding: 0;
    margin: 0;
}

body{
    background-image: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.73)), url("../img/movil-login-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: raleway;
    max-height:100%;
}

.formulario{
    display: flex;
    flex-direction: column;
    width: 60%;
    background-color: #252f6f;
    padding: 6%;
    border-radius:11px;
    align-items: center;
}

.logo{
    display: flex;
    width: 50%;
    margin-top: -35%;
    padding-bottom: 10%;
}

.titulo{
    color: white;
    font-size: 20px;
    text-align: center;
    padding-bottom: 20px;
}

.formulario form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

form input{
    width: 100%;
    border-width: 0;
    height: 40px;
    border-radius: 20px;
    padding-left: 10px;
    font-size: medium;
}

#login_btn{
    margin-top: 15px;
    padding: 10px;
    padding-left: 25%;
    padding-right: 25%;
    border-width: 0;
    border-radius: 20px;
    background-color: #e6363a;
    color: white;
    font-size: large;
    transition: all .3s;
}

#login_btn:hover{
    transform: scale(0.9);
}

.links{
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    text-align: center;
    gap: 6px;
}

a{
    color: rgb(39, 104, 173);
    text-decoration: none;
    transition: all .3s;
}

a:hover{
    color: white;
}

.btn_whatsapp{
    display: flex;
    width: 80px;
    position: fixed;
    top: auto;
    bottom: 10px;
    right: 10px;
}

.btn_whatsapp:hover{
    transform: scale(0.9);
}

/*VERSIÓN PARA TABLETS*/

@media(width >= 768px){
    .logo{
        width: 50%;
        margin-top: -45%;
    }

    .formulario{
        width: 30%;
    }

    .btn_whatsapp{
        width: 100px;
    }

}

/*VERSIÓN DE ESCRITORIO*/

@media(width >= 1200px){
    body{
        background-image: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.73)), url("../img/desktop-login-background.webp");
        max-height:100%;
    }
    .logo{
        width:45%;
        margin-top: -35%;
    }

    .titulo{
        width: 60%;
    }

    .formulario{
        width: 17%;
        padding: 2%;
    }

    .btn_whatsapp{
        width: 100px;
    }
    
    #login_btn{
    padding-right: 20%;
    padding-left: 20%;
    }
}
