body {
    font-family: 'Roboto', sans-serif;
    margin: 0px;
    font-size: 1.125rem;
    min-height: 100vh;
}


.login_page {
    background: url('../img/bg_login.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100vh;
}

.cad_page {
    background: url('../img/bg_cad.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.bloco_login {
    justify-self: center;
}

.grid-login h1 {
    color: #283649;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    margin: 0;
}

.bloco_login {
    background-color: rgba(255, 255, 255, 0.55);
    box-shadow: -5px 0px 6px 2px rgba(0, 0, 0, 0.12);
    width: 35%;
    justify-self: end;
    height: 100vh;
    align-content: center;
}

.grid-login {
    justify-items: center;
    display: grid;
    grid-template-columns: 1fr;
}

.grid-login h2 {
    color: #283649;
    font-style: italic;
}

.login_form {
    display: grid;
    width: 100%;
    max-width: 480px;
    justify-items: center;
}

.login_form label {
    color: #141A2A;
    font-family: "Roboto", serif;
    padding-bottom: 4px;
    padding-top: 16px;
    width: 80%;
    font-weight: 600;
}

.login_form input {
    border-radius: 6px;
    border: 1px solid var(--c6, #9C9C9C);
    background: #fff;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.08);
    height: 40px;
    font-size: 16px;
    width: 80%;
    padding-left: 8px;
}

.login_form button {
    margin-top: 40px;
    border-radius: 6px;
    padding: 10px 32px;
    background: linear-gradient(180deg, #32445C 0%, #141A2A 100%);
    color: #F9CA26;
    font-weight: 700;
    justify-self: center;
    cursor: pointer;
}

.btt-cad {
    width: 200px;
}

.btt-login {
    width: 140px;
    transition: 0.3s;
}

.btt-cad {
    transition: 0.3s;
}

.btt-login:hover,
.btt-cad:hover {
    scale: 1.05
}

input {
    width: 100%;
    background: #F4F4F4;
    border: 1px solid #9C9C9C;
    border-radius: 4px;
    height: 40px;
    font-size: 1rem;
    padding: 5px 10px;
    color: #595959;
}

input:focus,
select:focus {
    border-color: #5D5D5D;
    box-shadow: 0 0 5px rgba(156, 156, 156, 0.5);
    outline: none;
}

.creditos {
    padding-top: 80px;
    color: #717171;
}

@media (max-width:1000px) {
    .bloco_login {
        width: 40%;
    }

    .grid-login h2 {
        font-size: 1.25rem;
    }

    .grid-login div img {
        width: 180px;
    }
}

@media (max-width:800px) {
    .bloco_login {
        width: 360px;
    }

    .grid-login h2 {
        font-size: 1.25rem;
    }

    .grid-login div img {
        width: 180px;
    }

    .cad_page {
        background: url('../img/bg_cad.jpg');
        background-position: bottom;
    }
}