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

body {
    font-family: "Epilogue", sans-serif;
}

/* BOTÓN WHATSAPP */

.btn-wsp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2000;
    width: 85px;
    height: 85px;
    line-height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #00bb2d;
    border-radius: 50px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
}

.btn-wsp:hover {
    background-color: #009423;
}

@media only screen and (max-width: 1400px) {
    .btn-wsp {
        width: 75px;
        height: 75px;
    }

    .btn-wsp svg {
        width: 40px !important;
        height: 40px !important;
    }
}

@media only screen and (max-width: 1300px) {
    .btn-wsp {
        width: 65px;
        height: 65px;
    }

    .btn-wsp svg {
        width: 35px !important;
        height: 35px !important;
    }
}

@media only screen and (max-width: 1000px) {
    .btn-wsp {
        width: 55px;
        height: 55px;
    }

    .btn-wsp svg {
        width: 30px !important;
        height: 30px !important;
    }
}

@media only screen and (max-width: 900px) {
    .btn-wsp {
        width: 40px;
        height: 40px;
    }

    .btn-wsp svg {
        width: 25px !important;
        height: 25px !important;
    }
}

@media only screen and (max-width: 600px) {
    .btn-wsp {
        width: 38px;
        height: 38px;
        right: 25px;
        bottom: 25px;
    }

    .btn-wsp svg {
        width: 22px !important;
        height: 22px !important;
    }
}

/* LOGIN */

.login {
    /* background-image: url(../images/fondo.jpg); */
    background-color: #1a1a1a;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login .login_container {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.login h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 50px;
    color: #E12826;
    text-transform: uppercase;
    font-weight: 800;
}

.login h1 svg {
    width: 45px;
    border: 2px solid #FFF;
    border-radius: 50px;
    padding: 8px;
}

.login form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, .3);
    border-radius: 20px;
    padding: 45px 50px;
}

.login form>label {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FFF;
}

.login form>input {
    margin-bottom: 10px;
    border: none;
    height: 35px;
    outline: none;
    font-size: 16px;
}

.login form .login_remember-pass {
    display: flex;
    align-items: center;
    gap: 5px;

}

.login form .login_remember-pass>label {
    font-size: 12px;
    color: #FFF;
}

.login .login_container>button {
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 150px;
    text-transform: uppercase;
    font-weight: 600;
    color: #FFF;
    border: none;
    border-radius: 10px;
    background-color: #E12826;
}

.login .login_container>button svg {
    width: 20px;
}

.login .login_container a {
    font-size: 12px;
    color: #FFF;
    text-decoration: none;
}

/* RESPONSIVE LOGIN */

@media only screen and (max-width: 600px) {
    .login .login_container {
        width: 85%;
    }

    .login h1 {
        font-size: 40px;
    }

    .login h1 svg {
        width: 35px;
        padding: 5px;
    }

    .login_container form {
        padding: 35px;
    }
}

@media only screen and (max-width: 400px) {

    .login h1 {
        font-size: 30px;
    }

    .login h1 svg {
        width: 30px;
        padding: 4px;
    }

    .login_container {
        gap: 25px;
    }

    .login_container form {
        padding: 30px;
    }

    .login form>label {
        font-size: 16px;
    }

    .login form>input {
        height: 30px;
        font-size: 14px;
    }

    .login .login_container>button {
        height: 35px;
        font-size: 16px;
    }
}