body{
    text-align: -webkit-center;
    align-content: center;
}

input{
    outline: none;
}

.container{
    height: 80%;
    width: 800px;
    max-height: 80%;
    max-width: 800px;
    border-radius: 25px;
    display: flex;
    text-align: -webkit-center;
    text-align-last: center;
    box-shadow: 0px 0px 10px -5px;
}

.imgLogin{
    width: 50%;
    height: 100%;
}

@media (max-width: 600px) {
  .imgLogin {
    width: 0px;
  }
  
  .loginForm {
    width: 100% !important;
  }
  
  .container{
  	width: 90%;
  }
}

.imgLogin > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.loginForm{
    width: 50%;
    height: 100%;
    text-align-last: center;
    align-content: center;
}

@media (max-width: 600px) {
  
}

.treem-label{
    font-size: 20px;
    font-family: grotesc;
}

.treem-inputForm{
    width: 300px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.treem-inputForm > input{
    width: 90%;
    height: 30px;
    border: none;
    border-bottom: 1px solid gray;
    font-size: 15px;
    text-align-last: left;
    font-family: grotesc;
}

.treem-inputForm > label{
    font-family: grotesc;
    font-size: 18px;
    font-weight: bold;
}

.treem-btn-primary{
    width: 70%;
    height: 40px;
    font-family: grotesc;
    font-size: bold;
    background-color: #2b71db;
    color: white;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 0px 10px -5px;
    margin: 10px;
    transition: all .2s ease-out;
}

.treem-btn-primary:hover{
    background-color: #134592;
    transition: all .2s ease-out;
}