.login {
    background: var(--preto-05, #F5F5F5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    gap: 1rem;
}

.login__titulo {
    color: var(--preto-100, #464646);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.login__inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.login_input {
    height: 41px;
    width: calc(271px - 10px);
    padding-left: 10px;
    color: #A2A2A2;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    border: none;
    border-bottom: 1px solid #C8C8C8;
    border-radius: 4px;
}

.login_input:focus {
    outline: gray solid 1px;
}

.button__login--entrar {
    height: 40px;
    width: 109px;
    padding: 12px 16px;
    background: var(--azul-100, #2A7AE4);
    color: var(--preto-branco, #FFF);
    border: none;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .login_input {
        width: calc(275px - 10px);
    }
}

@media screen and (min-width: 1024px) {
    .login__titulo {
        font-size: 18px;
    }

    .login_input {
        height: 63px;
        width: calc(423px - 10px);
    }

    .button__login--entrar {
        width: 423px;
        height: 62px;
    }
}