* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Poppins", sans-serif;
 }
 body {
   overflow: hidden;
 }
 .backimg {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0px;
   filter: blur(7px);
 }
 
 form {
   width: 60%;
   height: 400px;
   margin: 100px auto;
   display: flex;
   background-color: rgba(218, 218, 218, 0.4);
   border-radius: 80px;
   overflow: hidden;
   position: relative;
 
 }
 .str1 {
   margin: 22px 0px 10px 0px;
   font-size: 35px;
   letter-spacing: 1px;
 }
 .signin {
   width: 50%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   background-color: rgba(240, 240, 240, 0.9);
 }
 input {
   width: 70%;
   height: 40px;
   margin: 10px 0px 12px 0px;
   outline: none;
   border: none;
   border-radius: 15px;
   padding-left: 10px;
 }
 .submit {
   width: 30%;
   padding: 0px;
   background-color: rgb(0, 0, 0);
   border-radius: 30px;
   font-size: 15px;
   font-weight: 600;
   color: rgb(255, 255, 255);
   transition: 0.4s;
 }
 .submit:hover {
   cursor: pointer;
   background-color: rgb(255, 93, 93);
 }
 #error,
 #errorp,
 #errorname,
 #num {
   margin-left: -10px;
   color: red;
   font-size: 12px;
   letter-spacing: 1px;
   position: absolute;
 }
 #error {
    top: 132px;
    color: red;
 }
 #errorp {
    bottom: 190px;
    color: red;
 }
 #errorname {
    bottom: 129px;
    color: red;
 }
 #num {
    bottom: 65px;
    color: red;
 }
 .icon {
    width: 50%;
    display: flex;
    margin-bottom: 15px;
    justify-content: space-evenly;
 }
 .icon img {
    width: 25px;
    height: 25px;
 }
 .signup {
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0,0.9);
    color: white;
    border: 2px solid white;
    padding: 20px;
    border-top-left-radius:inherit ;  
    border-bottom-left-radius:inherit ;
    position: relative;
    transition: 0.4s;
 }
 .signup h2 {
    text-align: center;
    margin-top: 80px;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 45px;
 }
 .signup p {
    font-size: 15px;
    text-align: center;
 }
 .signup a {
    text-decoration: none;
    padding: 10px;
    background-color: rgb(255, 0, 0);
    color: rgb(0, 0, 0);
    text-align: center;
    position: absolute;
    margin-left: 90px;
    bottom: 60px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
 }
 .signup a:hover {
    background-color: rgb(255, 255, 255);
 }
 .signup span {
    color: red;
    margin-left: 5px;
    font-size: 35px;
 }
 .signup:hover {
    background-color: rgba(0, 0, 0,0.8);
 }