@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-v3-latin-regular.woff") format("woff");
  font-weight: normal;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-v3-latin-300.woff") format("woff");
  font-weight: 300;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-v3-latin-500.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-v3-latin-800.woff") format("woff");
  font-weight: 800;
}

@font-face {
  font-family: "KlivvrPro";
  src: url("./fonts/KlivvrPro-Black.woff") format("woff");
  font-weight: normal;
}

@font-face {
  font-family: "KlivvrPro";
  src: url("./fonts/KlivvrPro-BlackItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "KlivvrPro";
  src: url("./fonts/KlivvrPro-Bold.woff") format("woff");
  font-weight: bold;
}

@font-face {
  font-family: "KlivvrPro";
  src: url("./fonts/KlivvrPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "KlivvrPro";
  src: url("./fonts/KlivvrPro-Light.woff") format("woff");
  font-weight: lighter;
}

@font-face {
  font-family: "KlivvrPro";
  src: url("./fonts/KlivvrPro-LightItalic.woff") format("woff");
  font-weight: lighter;
  font-style: italic;
}

body {
  font-family: Inter, sans-serif;
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

h5 {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  color: #111827;
}

h4 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1rem;
  text-align: center;
  color: #4B5563;
}

h3 {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("./assets/images/Background-brand.png");
  background-size: cover;
  gap: 1.375rem;
}

.verifyConatiner {
    max-width: 22.5rem;
    min-width: 22.5rem;
    min-height: 23rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.375rem;
    border-radius: 8px;
    background-color: #fff;
    padding: 2.5rem;
    margin: 0 1rem;
}

@media screen and (max-width: 410px) {
  .page {
    padding: 1rem;
  }
  .verifyConatiner {
    width: 100%;
    max-width: auto;
    min-width: auto;
    min-height: auto;
  }
}

#loading {
    display: none;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

#loading svg {
    width: 4rem !important;
    height: auto !important;
}

#success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    box-sizing: border-box;
}

#fail {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    box-sizing: border-box;
}

#notice {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
}


#btn {
    width: 100%;
    padding: 0.75rem 0;
    border-radius: 6px;
    background-color: #4F46E5;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

#letter {
  width: 8.375rem;
  height: auto;
}

/* loader */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #5B28F4;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #5B28F4 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }