* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.backimg {
   position: absolute;
   width: 100%;
   height: 100%;
   filter: blur(6px);
   top: 0px;

 }
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: 10px 0px 25px 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: 60%;
  height: 40px;
  margin: 10px 0px 17px 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 {
  margin-left: -10px;
  color: rgb(0, 38, 255);
  font-size: 12px;
  letter-spacing: 1px;
  position: absolute;
}
#error {
   bottom: 235px;
   color: red;
}
#errorp {
   bottom: 167px;
   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;
   border-left: none;
   padding: 20px;
   border-top-right-radius:inherit ;
   border-bottom-right-radius:inherit ;
   position: relative;
   transition: 0.4s;
}
.signup h2 {
   text-align: center;
   margin-top: 90px;
   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.7);
}