@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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #78c1f3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: #ffffff;
  width: 400px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 25px;
  text-align: center;
  animation: fadeInShow 0.3s;
  -webkit-animation: fadeInShow 0.3s;
}

@keyframes fadeInShow {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

.form-group {
  margin: 20px 0;
  text-align: start;
}

.form-group input {
  height: 50px;
  width: 100%;
  font-size: 15px;
  padding: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  outline: none;
  border: 1px solid #a3a3a3;
}

button {
  width: 100%;
  height: 45px;
  cursor: pointer;
  font-size: 18px;
  background-color: #0099ff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: none;
  color: #ffffff;
  margin-bottom: 20px;
}

.otp-form {
  display: block;
  margin: 20px 0;
}

.otp-form p {
  margin: 20px;
  color: green;
}

.otp-group {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 20px;
}

.otp-group input {
  height: 50px;
  width: 50px;
  padding: 5px;
  font-size: 25px;
  text-align: center;
  outline: none;
  border: none;
  border-bottom: 2px solid #a3a3a3;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img {
  height: 150px;
  margin: 15px;
}

button.disable {
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

.error-shake {
  animation: shake 0.2s ease-in-out 0s 2s;
  -webkit-animation: shake 0.2s ease-in-out 0s 2;
}

@keyframes shake {
  0% {
    margin-left: 0rem;
  }
  25% {
    margin-left: 0.5rem;
  }
  50% {
    margin-left: -0.5rem;
  }
  100% {
    margin-left: 0rem;
  }
}
