*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2b5c2bcb
}
    
.container{
    position: relative;
    width: 850px;
    height: 550px;
    background: #fff;
    border-radius: 30px; 
    box-shadow: 4px 6px 4px 0 #333;
}
.img .img-1{
    position: absolute;
    width: 30%;
    height: 40%;
    margin: 20% 5rem;
    border-radius: 20px;
    

     
}
 
.form-box{
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: seagreen;
    display: flex;
    text-align: center;
     color: #fff;
      
     
     
}
.form-box form{
    margin-top: 30%;
    width: 100%;


}
.form{
    width: 100%;
}
.container h1{
    font-size: 36px;
    margin: 10px 0;
}
.input-box{
    position: relative;
    margin: 30px 0;
}
.input-box input{
    width: 100%;
    padding: 13px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #eee;
    font-size: 16px;
    font-weight: 500;
}
.input-box input ::placeholder{
    font-weight: 500;
}
 .link{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin: 0 4px 0 4px;
 }
 .link a{
    color: #fff;
 }
 .submit-botton{
    width: 100%;
    height: 45px;
    background: #008000;
    border-radius: 9px;
    box-shadow: 0 0 10px rgba(0, 0, 0, -1);
    margin-top: 10px;
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 2s;
 }
 .submit-botton:hover{
    color: #008000;
    background: #fff;
 }
  @media screen and (max-width:320px) {
    .container{
        width: 90%;
        
    }
    .img .img-1{
        height: 25%;
        width: 35%;
        margin:50% 1rem ;
    }
}
    @media screen and (max-width:375px) {
        .container{
            width: 90%;
        }
        .img .img-1{
            width: 37%;
            height: 30%;
            margin:50% 1rem ;
        }
  }
  @media screen and (max-width:425px){
    .container{
        width: 90%;
    }
    .img .img-1{
        width: 39%;
        height: 30%;
        margin:50% 5% ;
    }
  }
  @media screen and (max-width:768px){
    .container{
        width: 90%;
    }
}
 