
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,800;1,800&display=swap');
body{
    margin: 0; 
    font-family: 'Nunito', sans-serif;
}
.main-login{ 
    width: 100vw; 
    height: 100vh;
    background: #ffffff; 
    display: flex; 
    justify-content: center;
    align-items: center; 
}


.left-login{
    width: 50vw; 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.left-login >h1{
    font-size: 3vw;
    color: #029c46;
}
.left-login-img{
    width: 35vw;
}
.left-login-imagem{
    width: 35px;
}

.right-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-login{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #029c46; 
    border-radius: 20px; 
 
}
.card-login >h1{ 
    color: #ffffff; 
    font-weight: 0; 
}
 
.textfield{
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
    font-family: Arial, Helvetica, sans-serif;
}
.textfield > input{
    width: 95%;
    border: none;
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
    color: rgb(61, 61, 61);
    font-size: 12pt;
    outline: none;
}
.textfield > label{
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}
.textfield > input::placeholder{
    color: #0b0c0c93;
}
.btn-login{
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color:#ffffff;
    background: #043d20;
    cursor: pointer;
}
.imglogin
{
  
    width: 100%;
}
@media only screen and (max-width: 950px){
    .card-login{
        width: 85%;
    }
}
@media only screen and (max-width: 600px){
    .main-login{
        flex-direction: column;
    }
    .left-login > h1{
        display: none;
    }
    .left-login{
        width: 100%;
        height: auto;
    }
    .right-login{
        width: 100%;
        height: auto;
    }
    .left-login-img{
        width: 100%;
    }
  
}



