#cardLogin{
    transform: translate(-2%, 0%);
    background-color: #FFF5EE;
    width: calc(100% + 2%);
}

.titleLogin1{
    font-size: 32px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    color: rgb(50, 50, 50);
    transform: translate(10%, 0%);
    width: 200px;
}

.inputSection{
    width: 85%;
}

.input-login{
    font-size: 16px;
    padding: 0.5rem;
    border-radius: 0pt;
    opacity: 0.8;
}

.input-login:focus{
    opacity: 1;
}

.titleLogin2{
    font-size: 19px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    color: rgb(50, 50, 50);
    transform: translate(40%, -50%);
    width: 250px;
}

.buttonRegister{
    background: #008BDE;
    width: 80%;
    border-radius: 15pt;
    font-weight: 500;
    color: white;
    font-size: 16px;
    opacity: 0.6;
    height: 40px;
    border-color: transparent;
    justify-self: center;
    transition: all 0.4s ease;
}

#loginForm{
    margin-top: 70px;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#loginForm .form-body{
    margin-left: 20px;
    margin-right: 20px;
}

.buttonRegister:hover{
    opacity: 1;
    box-shadow: none;
    transition: all 0.4s ease;
}

#imageSection{
    display: flex;
}

.title{
    font-size: 20px;
    font-weight: 900;
    font-family: 'Georama';
}

.rememberSection{
    width: 85%;
    margin-bottom: 80px;
}

#circleStyle{
    background: transparent;
    height:12px;
    width: 0.1rem;
    border: solid;
    border-width: 1pt;
    border-color: #008BDE;
    border-radius: 50%;
}

.lineStyle{
    background: #008BDE;
    height:0.1rem;
    opacity: 0.8;
    width: 38%;
}

.lineSection{
    width: 92%;
    margin-bottom: 20px;
}

.link-term-of-use{
    text-decoration: none;
    color: black;
    opacity: 0.4;
}

.link-term-of-use:hover{
    text-decoration: none;
    color: black;
    opacity: 0.7;
}

@media only screen and (max-width: 770px) { /*Arriba de estos pixeles ya no funciona*/
    #imageSection{
        display: none;
    }

    #loginForm{
        width: 75%;
    }

    .rememberSection{
        width: 80%;
    }

    .inputSection{
        width: 80%;
    }

    .buttonRegister{
        width: 60%;
    }
}

@media only screen and (max-width: 500px) { /*Arriba de estos pixeles ya no funciona*/
    #loginForm{
        width: 90%;
    }

    .inputSection{
        width: 100%;
    }

    .rememberSection{
        width: 100%;
    }

    .lineStyle{
        background: #008BDE;
        height:0.1rem;
        opacity: 0.8;
        width: 38%;
    }

    .lineSection{
        width: 100%;
    }

    .titleLogin1{
        transform: translate(20%, 0%);
    }

    .titleLogin2{
        transform: translate(30%, -50%);
    }
}
