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

body {
    background-image: url(../img/fondo.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: Poppins-Regular, sans-serif;
    height: 100vh;
}

.jf-c {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jf-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container-login {
    background: rgba(0, 0, 0, 0.8);
    width: 95%;
    max-width: 380px;
}

.container-login::before {
    content: "";
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
}