@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-size: small;
  font-family: "Poppins", sans-serif;

  /* height: 90dvh; */
  height: 100dvh;

  /* background: linear-gradient(to top, #fff 10%, rgba(141, 88, 42, 0.4) 90%) no-repeat; */
  /* background: linear-gradient(to top, #fff 10%, rgba(7, 52, 65, 0.4) 90%) no-repeat; */
  /* background-color: #eee; */
  background: linear-gradient(-45deg, rgb(38, 95, 148, 0.2), rgb(73, 142, 193, 0.2), rgb(128, 187, 227, 0.2));
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container-fluid {
  transition: ease-in-out 500ms all;
}

.wrapper {
  min-width: 30%;
  max-width: 500px;
  border-radius: 10px;
  /* margin: 50px auto; */
  padding: 30px 40px;
  box-shadow: 20px 20px 80px rgb(206, 206, 206);
  transition: ease-in-out 500ms all;
}

.h6 {
  font-weight: bold;
  color: var(--primary-color) !important;
  font-size: clamp(16px, 5vw, 24px);
}

.h2 {
  font-family: "Kaushan Script", cursive;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary-color);
  font-style: italic;
}

.h4 {
  font-family: "Poppins", sans-serif;
}

#mode-field label {
  font-size: smaller !important;
}

#mode-field .btn-primary {
  background: #fff;
  color: var(--primary-color);
  padding: 4px;
  margin: 0;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}

#mode-field .btn-primary:hover {
  background: #fff;
  color: #0d3955;
  border: 1px solid #0d3955;
}

#mode-field .btn-check:checked + .btn {
  color: white;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.input-field {
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.input-field:hover {
  color: #e11452;
  border: 1px solid #e11452;
}

#email-refresh,
.key-toggle {
  color: #e84d26b9;
}

#otp {
  font-weight: 600;
}

#timer {
  color: var(--primary-color);
  font-weight: 600;
  font-size: small;
}

input[type="text"],
input[type="password"] {
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  padding: 8px 2px;
  font-family: "Poppins", sans-serif;
}

input[type="text"]:disabled,
input[type="password"]:disabled {
  color: grey;
  font-size: medium;
  font-weight: 600;
}

.fa-eye-slash.btn {
  border: none;
  outline: none;
  box-shadow: none;
}

.send-otp {
  font-size: x-small !important;
  color: var(--primary-color) !important;
  background: #fff !important;
  border: 1px solid var(--primary-color);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 0 0 0 var(--primary-color);
  cursor: pointer;
  -webkit-animation: glow 1.4s ease-out infinite;
  animation: glow 1.4s ease-out infinite;
}

.send-otp:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
  border: 1px solid var(--primary-color);
}

@-webkit-keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--primary-color);
  }
  50% {
    box-shadow: 0 0 30px 0 var(--primary-color);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--primary-color);
  }
  50% {
    box-shadow: 0 0 30px 0 var(--primary-color);
  }
}

a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
}

a:hover {
  text-decoration: none;
  color: #e11452;
}

.option {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.option label.text-muted {
  display: block;
  cursor: pointer;
}

.option input {
  display: none;
}

.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.option input:checked ~ .checkmark:after {
  display: block;
}

.option .checkmark:after {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  background: var(--primary-color);
  position: absolute;
  top: 48%;
  left: 53%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 300ms ease-in-out 0s;
}

.option input[type="radio"]:checked ~ .checkmark {
  background: #fff;
  transition: 300ms ease-in-out 0s;
  border: 1px solid var(--primary-color);
}

.option input[type="radio"]:checked ~ .checkmark:after {
  transform: translate(-50%, -50%) scale(1);
}

.btn.btn-block {
  border-radius: 3px;
  background-color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  padding: 10px;
  color: #fff;
}

.btn.btn-block:hover {
  background-color: #e11452;
}

.remember {
  font-size: medium;
}

@media (max-width: 575px) {
  .wrapper {
    margin: 10px;
  }

  .remember {
    font-size: small;
  }
}

@media (max-width: 424px) {
  .wrapper {
    padding: 30px 10px;
    margin: 5px;
  }

  .option {
    position: relative;
    padding-left: 22px;
  }

  .option label.text-muted {
    font-size: 0.95rem;
  }

  .checkmark {
    position: absolute;
    top: 2px;
  }

  .option .checkmark:after {
    top: 50%;
  }

  #forgot {
    font-size: smaller;
    /* font-size: 0.95rem; */
  }

  .remember {
    font-size: smaller;
  }
}
