h1, h2, h3, h4, h5, p, li, blockquote, button, label {
  margin-block-end: 0.5em;
  margin-block-start: 0.5em;
  font-family: "Overpass", sans-serif;
}

input, input::placeholder {
  font-family: "Overpass", sans-serif;
}

a {
  font-family: "Overpass", sans-serif;
}

.sm-gap {
  margin: 0.5rem 0;
  border: none;
}

.md-gap {
  margin: 1rem 0;
  border: none;
}

.lg-gap {
  margin: 2rem 0;
  border: none;
}

html {
  font-size: 13px;
  scroll-behavior: smooth;
}
@media (max-width: 780px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 780px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 780px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 2150px) {
  html {
    font-size: 22px;
  }
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
}

h2 {
  font-size: 2.4rem;
  font-weight: 600;
}

h3 {
  color: #606060;
  font-size: 1.6rem;
  line-height: 1.5;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

h5 {
  font-size: 0.8rem;
  font-weight: 500;
  color: #606060;
}

p, blockquote {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

input::placeholder {
  font-size: 1rem;
  opacity: 0.6;
}

li {
  font-size: 1.2rem;
  list-style-type: circle;
  line-height: 1.65;
}

body {
  background-color: white;
  width: 100%;
  height: auto;
  margin: 0;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}

a {
  text-decoration: none;
  text-decoration-line: none;
  text-decoration-style: none;
  text-decoration-color: transparent;
  border-bottom: none;
  color: inherit;
  font-weight: inherit;
}
a:hover {
  color: inherit;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

@keyframes wipeShow {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
/* Keyframes for fade-in and rise animation */
@keyframes fadeInRise {
  from {
    opacity: 0;
    transform: translateY(30px); /* Starting slightly lower */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* End at the element's original position */
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0px);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
    transform: translateX(-40px);
  }
  25%, 50% {
    opacity: 1;
    transform: translateX(0);
  }
  75% {
    opacity: 0;
    transform: translateX(40px);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeInVideo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes zoomOutBlur {
  from {
    filter: blur(2rem);
    transform: scale(1.5);
    opacity: 0;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.shake {
  animation: shake 0.5s ease;
}

@keyframes loading {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}
/* Apply the animation to elements with class .fade-in */
.fade-in {
  opacity: 0; /* Start with the element invisible */
  animation: fadeInRise 2s ease forwards;
}

.fade-in-1s {
  opacity: 0; /* Start with the element invisible */
  animation: fadeInRise 2s ease 1s forwards;
}

.fade-in-2s {
  opacity: 0; /* Start with the element invisible */
  animation: fadeInRise 2s ease 2s forwards;
}

body {
  background-color: #efefef;
}

.header--wrap {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  background-color: white;
  filter: drop-shadow(rgba(0, 0, 0, 0.0666666667) 3px 3px 3px);
}
.header--wrap .logo--wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header--wrap .logo--wrap a {
  height: 60%;
}
.header--wrap .logo--wrap a .logo {
  height: 100%;
}
.header--wrap .logo--wrap h1.logo-tag {
  text-transform: unset;
  font-size: 1.2rem;
  color: #606060;
  font-weight: 400;
}
.header--wrap h5 a {
  color: rgb(255, 172, 68);
  text-decoration: underline;
}

.page-content {
  width: min(100%, 1800px);
  height: calc(80svh - 120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-content .login--wrap {
  width: min(90%, 900px);
  height: fit-content;
  margin: auto;
  border-radius: 20px;
  background-color: white;
  padding: 0 0 2rem 2rem;
  filter: drop-shadow(rgba(0, 0, 0, 0.0666666667) 3px 3px 3px);
}
.page-content .login--wrap .login-error {
  display: none;
  margin-bottom: 1rem;
  gap: 15px;
  background-color: rgb(255, 239, 213);
  width: 90%;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.page-content .login--wrap .login-error span {
  color: red;
  align-self: center;
}
.page-content .login--wrap .login-error p {
  margin: 0;
  color: #606060;
}
.page-content .login--wrap .login-error p a {
  color: #212121;
}
.page-content .login--wrap .login-error p a:hover {
  color: rgb(255, 172, 68);
}
.page-content .login--wrap .login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-content .login--wrap .login-form .form-input {
  width: min(90%, 800px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-content .login--wrap .login-form .form-input label {
  color: #212121;
}
.page-content .login--wrap .login-form .form-input label span {
  color: rgb(255, 203, 116);
}
.page-content .login--wrap .login-form .form-input input {
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 10px;
  border: 1px solid #606060;
}
.page-content .login--wrap .login-form .form-input input:focus {
  outline: none;
  border: 1px solid rgb(255, 172, 68);
}
.page-content .login--wrap .login-form .form-input #togglePassword {
  position: absolute;
  inset: auto 10px 10px auto;
  color: #606060;
  cursor: pointer;
  opacity: 0.5;
}
.page-content .login--wrap .login-form .form-input #togglePassword:hover {
  opacity: 1;
  color: rgb(255, 203, 116);
}
.page-content .login--wrap .login-form .form-submit {
  width: min(100%, 600px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.page-content .login--wrap .login-form .form-submit button {
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  background-image: linear-gradient(to right, #2e2e2e, #212121);
  color: rgb(255, 234, 210);
  border: none;
  cursor: pointer;
}
.page-content .login--wrap .login-form .form-submit button:hover {
  background-image: linear-gradient(to right, rgb(255, 190, 97), rgb(255, 184, 87));
  color: white;
}
.page-content .login--wrap .login-form .form-submit a.forgotpassword {
  color: #606060;
  display: none;
}
.page-content .login--wrap .login-form .form-submit a.forgotpassword:hover {
  color: rgb(255, 172, 68);
}
.page-content .login--wrap button {
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  background-image: linear-gradient(to right, #2e2e2e, #212121);
  color: rgb(255, 234, 210);
  border: none;
  cursor: pointer;
}
.page-content .login--wrap button:hover {
  background-image: linear-gradient(to right, rgb(255, 190, 97), rgb(255, 184, 87));
  color: white;
}
.page-content .promo--wrap {
  width: min(90%, 900px);
  height: 95%;
  margin: auto;
  border: 1px solid rgb(255, 203, 116);
  border-radius: 20px;
  background-image: linear-gradient(135deg, #212121, #2e2e2e 90%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-content .promo--wrap h1 {
  color: rgb(255, 229, 186);
}