body{
    background-color: lightgray;
}

main {
    display: flex;
    justify-content: center;
}

.login_box {
    margin-block: 20px;
    width: 1050px;
    height: 500px;
    background: #fff;
    box-shadow: 1px 4px 22px -8px #0004;
    display: flex;
    
}

.login_box .left{
    width: 41%;
    height: 100%;
    padding: 25px 25px;
}

.login_box .right{
  width: 59%;
  height: 100%;
}

.inputs {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.inputs i {
    padding: 8px;
    background-color: #3F5366;
    color: white;
}

.left .top_link a {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #3F5366;
    font-weight: 400;
    text-decoration: none;
}

.left .top_link{
  height: 20px;
}

.left {
	display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    height: 100%;
    width: 73%;
    margin: auto;
}

.error {
    color: red;
    text-align: center;
}

.contact{
    min-height: 300px;
}

.left h3{
    text-align: center;
    margin-bottom: 40px;
}

.left input {
    border: none;
    width: 80%;
    margin: 15px 0px;
    border-bottom: 1px solid #022f58;
    padding: 7px 9px;
    width: 100%;
    overflow: hidden;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
}

.left{
	background: linear-gradient(-45deg, #dcd7e0, #fff);
}

#loginButton {
    border: none;
    padding: 15px 70px;
    display: block;
    margin: auto;
    margin-top: 50px;
    background: #3F5366;
    color: #fff;
    font-weight: bold;
    -webkit-box-shadow: 0px 9px 15px -11px #022f58;
    -moz-box-shadow: 0px 9px 15px -11px #022f58;
    box-shadow: 0px 9px 15px -11px #022f58;
}

.right {
    background: #7ea8d2;
    background: linear-gradient(162deg,#7ea8d2 0%, #3f5366 80%);
    background: -webkit-linear-gradient(162deg,#7ea8d2 0%, #3f5366 80%);
    background: -moz-linear-gradient(162deg,#7ea8d2 0%, #3f5366 80%);
	color: #fff;
}

.right .right-text{
    height: 70%;
    transform: translate(0%, 30%);
}

.right-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-text h2{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 500;
}

.right-text h5{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 19px;
    font-weight: 300;
}

.right-text p{
    margin-inline: 80px;
    text-align: center; 
}

.right .right-inductor{
    width: 70px;
    height: 7px;
    background: #fff0;
    left: 50%;
    bottom: 70px;
}

.top_link img {
    width: 28px;
    padding-right: 7px;
    margin-top: -3px;
}

.recovery {
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.recovery a{
    text-decoration: none;
    color: #3F5366;
}

.lembrar-senha {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
}
.lembrar-senha input{
    width: 10%;
}

.botton{
    display: none;
}

.right img {
    width: 200px;
    margin-top: 20px;
}

.botton img {
    width: 200px;
    margin-top: 10px;
}

.top {
    display: none;
}




/* Responsividade */
@media (max-width: 1200px) {

    .login_box {
        width: 900px; 
    }
    .login_box .right {
        width: 50%; 
    }
    .login_box .left {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .login_box {
        width: 700px;
    }
    .login_box .right {
        width: 40%;
    }
    .login_box .left {
        width: 60%;
    }

    .right-text p{
        margin-inline: 10px;
    }

    .right .right-text{
        height: 70%;
        transform: translate(0%, 20%);
    }

    .right-text h2{
        font-size: 40px;
    }

}

@media (max-width: 750px) {

    .login_box {
        width: 100%;
        height: 100%;
        min-width: 380px; 
        padding: 0px;
        margin: 0px;
    }

    .left {
        height: 100%;
    }

    .login_box .right {
        display: none; 
    }
    .login_box .right {
        width: 30%; 
    }

    .login_box {
        flex-direction: column; 
        height: auto; 
    }

    .login_box .left {
        width: 100%; 
    }

    .top{
        display: block;
        padding: 10px;
        text-align: center;
    }

    .botton{
        display: block;
        background-color: #3F5366;
        padding: 10px;
        border-bottom: 1px solid #fff;
    }

    .botton-text{
        text-align: center;
        color: #fff;
    }
      
}

#loadingSpinner{
    display: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3.5px solid rgba(0, 0, 0, 0.1);
    border-left-color: #7986cb;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
  
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}