main {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    width: 100%;
    min-height: calc(100% - 10.5625rem);
}

.left-section {
    padding: 2rem 11rem;
    padding-right: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.left-section div  {
    width: 100%;
    max-width: 40rem;
}

.left-section div h1 {
    color: #082A49;
    font-weight: 400;
    font-size: 2.0625rem;
}

.left-section div .green-bar  {
    margin-top: 0.75rem;
    margin-bottom: 8.5rem;
    width: 2.4375rem;
    height: 0.4375rem;
}

.left-section form {
    width: 100%;
    max-width: 40rem;
}

.left-section .esqueceu-senha  {
   color: #1672EA;
   font-size: 0.8125rem;
   text-decoration: none;
   margin-top: -0.5rem;
}

.left-section .esqueceu-senha:hover  {
    opacity: 80%;
}

.right-section  {
    background-color: #0C467E;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}

.right-section img {
    object-fit: contain; 
    width: 65%;
    max-width: 26.25rem;
}

.button-login,.button-cancelar {
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    display: block;
    font-weight: 700;
    color: white;
    border: none;
    width: 7.875rem;
    height: 2.375rem;
}

.button-login:hover,
.button-cancelar:hover {
    opacity: 80%;
}

.button-login {
    color: white;
    background-color: #00C15D;
}

.button-cancelar {
    color: #555;
    background-color: #ccd1de;
}

.green-bar {
    width: 2.4375rem;
    height: 0.4375rem;
    background-color: #00C95A;
}

.recover-buttons-container {
    justify-content: end;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.5rem;
    display: flex;
    margin-top: 4rem;
}

.recover-buttons-container a {
    text-decoration: none;
}

/* if is mobile */
@media (max-width: 41.875rem)  {
    main {
        display: block;
    }

    .right-section {
       display: none;
    }

    .left-section {
        padding: 2rem;
        padding-right: 2rem;
    }

    .left-section div h1  {
        font-size: 1.25rem;
    }

    .left-section div .green-bar  {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
}