body {
  background-color: rgb(27 24 24);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.heading {
  display: flex;
  flex-direction: row;
  height: 100px;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  color: white;
}
.form {
  width: 430px;
  height: 450px;
  margin: auto;
  margin-top: 6rem;
  border-radius: 62px;
  position: relative;
  border: 1px solid white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

input[type="text"],
input[type="password"] {
  background-color: #e2ccee;
  width: 14.7rem;
  height: 62px;
  padding-left: 4rem;
  font-size: 1.2rem;
  border: none;

  display: flex;
  align-items: center;
}

.input-first {
  padding-bottom: 10px;
}
.icon {
  color: rgb(34, 23, 23);
  min-width: 50px;
  position: absolute;
  margin-top: 1.5rem;
  text-align: center;
}
.input-sec {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  color: #c2a6a6;
  margin-top: 15px;
}
.forget {
  padding-left: 3rem;
  color: #caccda;
}
.button_submit {
  background-color: #e9dbf1;
  margin-top: 1rem;
  width: 292px;
  height: 62px;
  border-radius: 43px;
  text-align: center;
  font-size: 1.2rem;
  border: none;
  color: rgb(47, 38, 38);
}

input[type="password"]:hover,
input[type="email"]:hover,
input[type="text"]:hover {
  background-color: #e9dbf1;
}
button:hover {
  background-color: #a28cad;
  box-shadow: 0 0 20px 10px rgba(70, 100, 115, 0.2);
  color: rgb(46, 39, 27);
}
a {
  text-decoration: none;
}
a:hover {
  color: #9a6bb4;
}
input::placeholder {
  opacity: 0.7;
  color: #5b3d6b;
}
.input-first:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.form {
  background-image: linear-gradient(to bottom right, #2d22a3, #f03235);
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  background-size: 400% 400%;
  animation-name: gradi;
}
@keyframes gradi {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* after hr */

hr {
  margin-top: 50px;
  width: 30%;
}
.register {
  text-align: center;
  color: #caccda;
}
.register-a {
  color: rgb(228, 133, 133);
}
.register-a:hover {
  color: #caccda;
}
.footer {
  margin-top: 4rem;
  padding: 0;
  color: #fff;
  text-align: center;
}
/* signup form */
.signup_form {
  width: 430px;
  height: 34rem;
  padding-bottom: 1rem;
  margin: auto;
  margin-top: 1rem;
  border-radius: 62px;
  position: relative;
  border: 1px solid white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.signup_first {
  display: flex;
  flex-direction: column;
}

/* u can select the  class also */

input[type="email"],
input.sname,
input.spassword {
  background-color: #e2ccee;
  width: 14.7rem;
  height: 60px;
  padding-left: 4rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 0.5rem;

  display: flex;
  align-items: center;
}
.first {
  padding-bottom: 10px;
}
.signup_sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.button-sec {
  background-color: #e9dbf1;
  margin-top: 2rem;
  width: 250px;
  height: 60px;
  border-radius: 43px;
  font-size: 1.2rem;
  border: none;
  color: rgb(92, 73, 73);
}
.or {
  margin: 10px;
  text-align: center;
  color: white;
}
.button-google {
  background-color: #e9dbf1;
  width: 15rem;
  height: 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  border: none;
  color: rgb(92, 73, 73);
}
.register-g {
  color: #5b3d6b;
}
.signup_form {
  background-image: linear-gradient(to bottom right, #1a49ae, #e33917);
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  background-size: 400% 400%;
  animation-name: gradi;
}
@keyframes gradi {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
