body {
    margin: 0 auto;
    font-family: sans-serif;
    padding: 0;
    font-family: sans-serif;


}


.main-login {
    margin: 0 auto;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}


.rigth_login {
    width: 40%;
    height: 100%;
    background:#ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0px 0px 0px 0px;

    .icon-login {

        margin-top: 20px;
        margin-left: 10px;
        position: absolute;
        width: 20px;
        height: 20px;

    }


    .icon-senha {
        position: absolute;
        top: 50%;
        right: 20px;
        size: 60%;
        cursor: pointer;
    }




}

.text-rigth-sup,
h1 {
    width: 95%;
    font-weight: 600;
    color: #4E6E5D;
    font-size:18px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;

}

.text-rigth-sup {
    width: 100%;
    height: 20%;
    display: flex;
    max-width: 600px;
  

    flex-direction: column;

}

.left-login {

    width: 60%;
    height: 100%;
    display: flex;
    row-gap: 5%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #F7FAFC;

}

.logo-login{
    max-width: 400px; 
    max-height: 400px; 
    width: auto;
    height: auto;

}

.card-login {
    width: 90%;
    height: 60%;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: transparent;
    border-radius: 0px;
    max-width: 600px;



}


.textfield {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 5px 0px;
    box-sizing: border-box;

}

.textfield>input {
    width: 100%;
    height: 60px;
    border: 1px solid #C6C2D0;
    border-radius: 10px;
    padding: 14px 14px 14px 35px;
    background: white;
    font-size: 12px;
    box-sizing: border-box;

}

.textfield>label {
    color: #4E6E5D;
    margin-bottom: 5px;
    font-weight: bold;
}

.textfield>label::placeholder {
    color: #C6C2D0;
}

.btn-login {
    width: 100%;
    height: 60px;
    margin-top: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
    font-weight: 800;
    background-color: #5D8A79;
    color: white  ;
    cursor: pointer;


}


.btn-login:hover {
    background-color: #476B5C;
    color: white;
    /*border: 1px solid white;*/
}

.text-rodape,
font {
    color: #ffffff;
    opacity: 0.9;
    font-size: 12px;

}


.text-reset-pass{
    width: 100%;
    height: 20px;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;

   
}

.font-pass{
    color: #4E6E5D;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;

}


.font-pass:hover {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}

.text-reset-pass{
    width: 100%;
    height: 20px;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;

   
}

.text-reset-pass{
    width: 100%;
    height: 20px;
    margin-top: 15px;
    text-align: center;
  
}






/*##############  MODAL TOKEN #######################*/

/* Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.3s ease;
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -10px;
    margin-right: -10px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* OTP Inputs */
.modal-content div {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.modal-content input[type="number"] {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-content input[type="number"]:focus {
    border-color: #4E6E5D;
    outline: none;
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

.modal-conten input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}





.modal-content button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4E6E5D;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content button:hover {
    background-color: #AC5933;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}




/*############## SPINER CARREGANDO ########################*/
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spinner-container {
    text-align: center;
    color: #fff;
}

.spinner-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-top-color: #4E6E5D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*#########################################################*/

@media only screen and (max-width:950px){
    .card-login{
        width: 75%;
    }
}

@media only screen and (max-width:600px) {


    .logo-login{
        max-width: 200px; 
        max-height: 200px; 
        width: auto;
        height: auto;
    
    }
    
   
    .text-rodape{
    
        justify-content:center;

    }

    .img-logo{
        width: 150px;
        margin-left: 0%;
    }

    .main-login{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .rigth_login{
        width: 90%;
        height: 65vh;
        border-radius: 0px 0px 20px 20px;
        border: 1px solid #CAE0D8;
    }

    .left-login{
   
        width: 90%;
        height: 25vh;
        border-radius: 20px 20px 0px 0px;
        
    }


    .logo-verde > h1 {
   display: none;
        
    
    }

    .card-login{
        width:75%;
    }
    

}