*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #96b8eb;
    font-family: sans-serif;
}
.container{
    max-width: 90%;
}
.login__form{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 80vh;
}
.login__form__img img{
    width: 500px;
    height: 100%;
    object-fit: cover;
}
.login__form__right{
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login__form__right h1{
   margin-bottom: 2rem;
}
.login__form__right form input,
.login__form__right form button{
   width: 100%;
   margin: 1rem;
   border: 2px solid #172942;
   padding: 0.6rem;
   border-radius: 5px;
   outline: none;
}
.login__form__right form input:focus{
    border: 2px solid rgb(68, 37, 82);
    box-shadow: 0 0 1px 3px rgb(76, 124, 146);
}
.login__form__right form label{
    color: #8c8e92;
    font-size: 0.8rem;
}
.login__form__right form button{
  background-color: rgb(68, 37, 82);
  border: none;
  color: #fff;
  font-size: 1rem;
    margin-top: 1rem;
    padding: 0.7rem;
    cursor: pointer;
    transition: background 0.2 ease;
 }
.login__form__right form button:hover{
  background-color: rgb(10, 4, 34);
}
 @media screen and (min-width:768px){
   .login__form{
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
   }
 }