@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700;800;900&family=Stick+No+Bills:wght@500;600;700;800&display=swap");
    :root{
      --site-clr: rgba(75%, 100%, 0%);
      --bg: hsl(0, 0%, 95%);
      --font: "Quicksand", Sans-Serif;
    }
    body{
      margin: 0;
      background: #fff;
      font-family: var(--font);
    }
    *{
      box-sizing: border-box;
      font-family: var(--font);
    }
    .header{
      display: flex;
      justify-content: center;
      align-items: flex-start;
      max-width: 100%;
      background: hsl(0, 0%, 95%);
      height: 165px;
      flex-direction: column;
      padding: 20px;
      text-align: left;
    }
    .header b{
      font-size: 15px;
      color: #000;
      font-weight: 900;
    }
    .header span{
      font-size: 14px;
      color: #777;
      margin-top: 8px;
      font-weight: 900;
    }
    .header i{
      font-size: 22px;
      margin-bottom: 12px;
      margin-left: 2px;
      color: #444;
    }
    .form{
      padding: 20px;
      background: #fff;
      margin-top: 2px;
      width: 100%;
    }
    .inputs{
      width: 100%;
      background: hsl(0, 0%, 95%);
      color: #888;
      padding: 5px;
      border-radius: 8px;
      height: 50px;
      display: flex;
      align-items: center;
      margin-top: 15px;
      margin-bottom: 15px;
    }
    .inputs i{
      margin-left: 11px;
      margin-right: 11px;
      font-size: 17px;
      color: #0008;
    }
    .inputs input::placeholder {
      color: #0008;
    }
    .inputs input{
      border: none;
      outline: none;
      color: #000;
      font-size: 12px;
      height: 100%;
      background: transparent;
      font-family: var(--font);
      width: 100%;
    }
    .form-button{
      padding: 10px;
      height: 47px;
      background: var(--site-clr);
      border: none;
      outline: none;
      border-radius: 8px;
      color: #fff;
      font-size: 11px;
      font-weight: 900;
      margin-top: 35px;
      width: 100%;
      font-family: var(--font);
    }
    .link-right a{
      text-decoration: none;
      color: var(--site-clr);
    }
    .link-right{
      display: flex;
      justify-content: flex-end;
      margin: 0;
      font-size: 11px;
      color: var(--site-clr);
      font-weight: 900;
    }
    .link-center a{
      text-decoration: none;
      color: var(--site-clr);
      margin-left: 10px;
    }
    .link-center{
      display: flex;
      justify-content: center;
      margin: 0;
      margin-top: 35px;
      font-size: 11px;
      color: #000;
      font-weight: 900;
    }
    .alertErr,
.alertSuc{
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0, 0%, 10%, 0.4);
  transition: 0.25s;
}
.alertErr .adiv,
.alertSuc .adiv{
  padding: 26px;
  border-radius: 15px;
  background: #fff;
  width: 260px;
  box-shadow: border-box;
  word-break: break-word;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: zoomInMsg 0.2s;
  transition: 0.25s;
}
@keyframes zoomInMsg{
  from{
    transform: scale(0.7);
    opacity: 0.1;
  }
  to{
    transform: scale(1);
    opacity: 1;
  }
}
.alertErr,
.alertSuc{
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0, 0%, 10%, 0.4);
  transition: 0.25s;
}
.alertErr .adiv,
.alertSuc .adiv{
  padding: 0px;
  border-radius: 16px;
  background: #fff;
  width: 290px;
  box-shadow: border-box;
  word-break: break-word;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: zoomInMsg 0.2s;
  transition: 0.25s;
  overflow: hidden;
}
@keyframes zoomInMsg{
  from{
    transform: scale(0.9);
    opacity: 0.1;
  }
  to{
    transform: scale(1);
    opacity: 1;
  }
}
.alertErr .adiv i,
.alertSuc .adiv i{
  font-size: 50px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.alertErr .adiv span,
.alertSuc .adiv span{
  font-size: 13px;
  font-weight: 400;
  color: #222;
  margin-top: 10px;
  margin-bottom: 18px;
  text-align: center;
  padding: 0px;
  padding-left: 13px;
  padding-right: 13px;
}
.alertSuc .adiv i{
  color: rgba(0%, 50%, 0%);
}
.alertErr .adiv i{
  color: rgba(80%, 0%, 0%);
}
.alertErr .adiv .button,
.alertSuc .adiv .button{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
  border-top: 1px solid hsl(0, 0%, 70%);
  padding-top: 0px;
}
.alertErr .adiv .button button,
.alertSuc .adiv .button button{
  padding: 10px;
  color: #fff;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 0px;
  height: 45px;
  width: 50%;
  font-size: 12px;
  font-family: var(--mitr);
  background: #fff;
  color: #666;
  border: none;
}
.alertErr .adiv .button button:hover,
.alertSuc .adiv .button button:hover,
.alertErr .adiv .button button:active,
.alertSuc .adiv .button button:active{
  background: hsl(0, 0%, 90%);
}
.alertSuc .adiv .button #cancelBtn,
.alertErr .adiv .button #cancelBtn{
  border-right: 0.8px solid hsl(0, 0%, 70%);
}
.alertErr .adiv .button #okBtn,
.alertSuc .adiv .button #okBtn{
  border-left: 0.8px solid hsl(0, 0%, 70%);
}
.spin{
  padding: 2px;
  height: 25px;
  width: 25px;
  border: 2.7px solid #fff;
  border-top: 2.7px solid #0003;
  background: transparent;
  border-radius: 50%;
  animation: infinitySpin 0.5s linear infinite;
  display: inline-block;
  box-sizing: border-box;
}
@keyframes infinitySpin{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}