@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}


body{
background-color:   #d4d5d8;

}

.container{
    
    width: 900px;
 
    margin:25px auto;
    height: 530px;
    background-color: #fff;
    border-radius: 8px;
    
}

.left{
    display: inline-block;

    width: 50%;
    height: 530px;
 background-image: url(images/2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}



.right{
    display: inline-block;
    width: 50%;
    vertical-align: top;
    background: #33415a;
    height: 530px;
}

.content-right{
    width: 60%;
    margin: 20px auto;
}

.right form  label{
    display: block;
    color: #fff;
   
}
.right form h2{
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0;
}
.right form .text {
    color: #20d5ba;
    margin: 10px 0;
    text-align: center;
}

.right form input{
    color: #fff;
    margin: 5px auto;
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid #fff;
    outline: none;
}

.right form div input {
  
    vertical-align: top;
    display: inline-block;
    width: 10%;
}
.right form div span{
    font-size: 10px;
    display: inline-block;
    vertical-align: bottom;
    width: 80%;
    color: #fff;
}

::placeholder{
    color: #fff;
}

#btn{
background: #20d5ba;
color: #fff;
text-transform: uppercase;
text-align: center;
border: none;
}
#underline{
    color: gray;
    margin: 5px 0;
    text-align: center;
    text-decoration: underline;
}





@media screen and (max-width:462px){
  
   
    .left{
       display: none;
   }

   .right{
       width: 100%;
        
       height: 1200px;
   }
   .right form label{
    font-size: 1em;
   }

   .right form input{
    color: #fff;
    margin: 30px auto;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid #fff;
    outline: none;
}

::placeholder{
    color: #fff;
    font-size: 1em;
}
 
}
    


