:root {
    --primary-blue: #275680;
    --primary-yellow: #F5C10C;
    --primary-green: #40BA8D;
    --primary-red: #FF5364;
    --wall-color: #f2f4f8;
    --text-color: #1E1E1E;
    --text-discret: #8c8c8c;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
}


body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;


}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    width: 85%;

}

.left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;

}

.logo {
    width: 55%;
}

.login-img {
    width: 75%;
}


.login-content {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    padding: 11vh;
}

.head-login {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.title {
    font-weight: 700;
    font-size: 2.5em;
    color: var(--text-color);
}

.subtitle {
    font-weight: 500;
    font-size: 1.4em;
    color: var(--text-color);
}

.label-collum {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.label-collum input {
    padding: 10px;
    border-radius: 50px;
    border: none;
    background-color: var(--wall-color);
    box-shadow: 1px 1px #ccc;
    font-size: 1em;
}

.text-discret {
    color: var(--text-discret);
}

.label-row {
    display: flex;
    justify-content: space-between;
}

.forgot-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.btn-login {
    padding: 10px;
    border-radius: 50px;
    border: none;
    background-color: var(--primary-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.btn-login:hover {
    background-color: #193f60;
}


.footer-login {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.redirections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw
}

.btn-redirection {
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    background-color: #fff;
    color: var(--primary-blue);
    font-weight: 550;
    font-size: 14px;
}

.btn-redirection:hover {
    background-color: var(--primary-green);
    color: #fff;
    border: none;
}

.terms {
    font-weight: 100;
    font-size: 14px;
}

.terms a {
    color: var(--primary-blue);
    font-weight: 600;
}

.help-block{
    color: var(--primary-red);
}

/* Responsiveness */

@media (max-width: 480px) and (min-width: 260px) {
    /* Estilos para celulares */

    body {
        font-family: 'Roboto', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;


    }

    .main-content {
        display: flex;
        flex-direction: column;
        gap: 5vw;

    }

    .left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2vh;

    }

    .logo {
        width: 50%;
    }

    .login-img {
        width: 55%;
    }


    .login-content {
        display: flex;
        flex-direction: column;
        gap: 2vh;
        padding: 0px;
    }

    .head-login {
        display: flex;
        flex-direction: column;
        gap: 1vh;
        padding-bottom: 10px;
    }

    .login-form {
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }

    .title {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .footer-login {
        gap: 1.5vh;
    }

    .redirections {
        display: flex;
        flex-direction: column;
        gap: 2vw;
    }

    .btn-redirection {
        padding: 10px;
    }
    .terms {
        font-size: 0.55em;
    }
    
    .terms a {
        color: var(--primary-blue);
        font-weight: 600;
    }
}

@media (min-width: 481px) and (max-width: 799px) {
    /* Tablets */


    body {
        font-family: 'Roboto', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
    
    
    }
    
    .main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0vw;
        width: 100%;
    
    }
    
    .left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4vh;
    
    }
    
    .logo {
        width: 60%;
    }
    
    .login-img {
        width: 85%;
    }
    
    
    .login-content {
        display: flex;
        flex-direction: column;
        gap: 2.5vh;
        padding: 3vh;
    }
    
    .head-login {
        display: flex;
        flex-direction: column;
        gap: 2vh;

    }
    
    .login-form {
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }
    
    .title {
        font-weight: 700;
        font-size: 2em;
        color: var(--text-color);
    }
    
    .subtitle {
        font-weight: 500;
        font-size: 1.1em;
        color: var(--text-color);
    }

    .btn-login:hover {
        background-color: #193f60;
    }
    
    
    .footer-login {
        display: flex;
        flex-direction: column;
        gap: 1.5vh;
    }
    
    .redirections {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1vw
    }
    
    .btn-redirection {
        padding: 10px;
        font-size: 12px;

    }

    
    .terms {
        font-weight: 100;
        font-size: 12px;
    }
    


  }
