@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

.otp-body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.otp-card {
  text-align: center;
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  /* box-shadow: 0 10px 40px -20px black; */
}
.otp-card-inputs {
  margin: 30px 0;
  display: grid;
  gap: 30px;
  justify-content: center;
  grid-template-columns: repeat(6, auto);
}
.otp-card-inputs input {
  padding: 0.5px;
  width: 60px;
  height: 70px;
  font-size: 35px;
  text-align: center;
  border-radius: 20px;
  border: 3px solid var(--Color-6) !important;
}
.otp-card-inputs input:focus {
  outline: 3px solid var(--Primary);
  border-color: transparent;
}
.otp-card button {
  background-color: var(--Primary);
  border: none;
  padding: 15px 50px;
  font-size: 18px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 15px;
}
.otp-card button:hover {
  cursor: pointer;
  opacity: 0.9;
}
.otp-card button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.forgotemail-body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20rem;
}
.forgotemail-card {
  text-align: center;
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px -20px black;
}
.forgotemail-card-inputs {
  margin: 30px 0;
  display: grid;
  gap: 30px;
  justify-content: center;
  grid-template-columns: repeat(6, auto);
}
.forgotemail-card-inputs input {
  width: 30rem;
  height: 70px;
  font-size: 25px;
  text-align: center;
  margin-left: 15%;
  border-radius: 10px;
  bottom: 1px solid black;
}
.forgotemail-card-inputs input:focus {
  outline: 2px solid var(--Primary);
  border-color: transparent;
}
.forgotemail-card button {
  background-color: var(--Primary);
  border: none;
  padding: 15px 50px;
  font-size: 18px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 15px;
}
.forgotemail-card button:hover {
  cursor: pointer;
  opacity: 0.9;
}
.forgotemail-card button[disabled] {
  opacity: 0.6;
  cursor: default;
}
