body{
    background-color: whitesmoke;
    font-family:cursive;
    font-weight: 400;
    font-style: normal;
      
      
}


.container{
    height: 700px;
    width: 90%;
    position: relative;
    margin: 0 auto;
   
    box-shadow: 2px 2px rgb(179, 178, 178);

}


.form{
    height: 700px;
    width: 30%;
    background-color: white;
    position: absolute;
    right: 0px;
    top: 0px;
}

.forms p{
    margin-top: 10px;
}

.form h2{
    text-align: left;
    margin-top: 35px;
    margin-left: 30px;
    color: black;
    font-size: 30px;
    font-weight: bold;
}

.forms{
    margin-left: 25px;
    margin-top: 35px;
   
}

input[type="text"], 
input[type="password"],
input[type="email"]
{
    border: none;
    border-bottom: 2px solid rgb(138, 136, 136);
    width: 90%;
    color: rgb(179, 181, 183);
    font-size: 20px;
}

.check-box{
    margin-top: 20px;
}

.btn {
    border-radius: 50px;
    border: none;
    width: 50%;
    height: 50px;
    margin-right: 30px;
    background-image: linear-gradient(pink,purple) ;
    font-size: 20px;
    color: white;
}
.sign{
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
}

.sign p{
    margin-top: 16px;
    margin-left: 30px;
    
}
/* Image */
.img{
    height: 700px;
    width: 75%;
    background-image: url(/img/Reg-Form1.jpg),linear-gradient(pink,purple);
    background-repeat: no-repeat repeat;
    background-blend-mode: overlay;
    background-size: cover;
}

/* Media Query */

/* Mobile */
@media screen and (max-width: 767px){
    .container{
        width: 100%;
    }
    .form{
        width: 45%;
    }
    .img{
        width: 55%;
    }
    .form h2{
        font-size: 25px;
    }
    .forms{
        margin-left: 20px;
    }
    .btn{
        width: 40%;
    }
    .sign p{
        margin-left: 5px;
    }
}

/* Tablet  */
@media screen and (min-width : 768px) and (max-width : 1023px){
    .container{
        width: 100%;
    }
    .form{
        width: 45%;
    }
    .img{
        width: 55%;
    }
    .form h2{
        font-size: 25px;
    }
    .forms{
        margin-left: 20px;
    }
    .btn{
        width: 40%;
    }
    .sign p{
        margin-left: 5px;
    }
    
}