@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --white: #ffffff;
  --off-white: #f5f5f5;
  --black: #000;
  --footer-color: #f5f5f5;
  --blue-2: #223448;
  --text-color: rgba(233, 224, 207, 1);
  --ash: #7c7c7c;
}
body {
  font-family: "Inter", sans-serif;
}
.backdrop,
.bg-side {
  border-bottom-left-radius: 15px;
}
.bg-side h2 {
  position: absolute;
  top: 10%;
  left: 75%;
  font-size: 33.26px;
}
.bg-side p {
  position: absolute;
  bottom: 10%;
  text-align: center;
  z-index: 9999;
  width: 100%;
  text-align: right;
  padding-right: 2rem;
  font-size: 22px;
  font-weight: 300;
}
.backdrop {
  position: absolute;
  height: 336px;
  width: 100%;
  bottom: 0%;
}
.error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 4px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  display: none;
}
.error-border {
  border-color: #e74c3c !important;
}
/* overlay */
.verify-email-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.verify-text {
  background: var(--off-white);
  border: 2px groove white;
  color: #2c394f;
  max-width: 350px;
  width: 100%;
  border-radius: 14px;
  margin: 5rem auto;
  padding-block: 1rem;
  animation: scaleIn 0.3s ease;
}
.verify-text p {
  font-size: 12px;
}
.email_animation img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: auto;
}
.okay-btn:hover {
  background: hsla(217, 28%, 24%, 0.902);
}
/* animation */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
select,
::picker(select) {
  appearance: base-select;
}
select {
  display: flex;
  align-items: center;
  padding: 10px;
}
select option {
  padding: 10px;
}
::picker(select):popover-open {
  opacity: 1;
}
@starting-style {
  ::picker(select):popover-open {
    opacity: 0;
  }
}
::picker(select) {
  top: calc(anchor(bottom) + 8px);
  left: anchor(70%);
  min-width: 198px;
  height: 188px;
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  opacity: 0;
  transition: all 0.4s allow-discrete;
}
/* media query */
@media (max-width: 800px) {
  .bg-side {
    display: none;
  }
  .register-container {
    grid-template-columns: 1fr;
  }
  .register-input-frame {
    padding: 2rem;
  }
  .register-input-frame h2 {
    font-size: 32px;
  }
  .register-input-frame p {
    font-size: 18px;
  }
}
@media (max-width: 430px) {
  .register-input-frame {
    padding: 1.3rem;
  }
  .log-in a {
    font-size: 12px;
    gap: 5px;
  }
  .log-in {
    gap: 8px;
  }
  .register-input-frame h2 {
    font-size: 20px;
  }
  .register-input-frame p {
    font-size: 14px;
  }
}
/* @media (min-width: 2000px) {
  .bg-side {
    height: 100vh;
  }
  .register-input-frame {
    padding: 10rem;
  }
} */
