@import url("/assets/fonts/inter/inter.css");
html {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(248, 249, 252);
  color: rgb(40, 40, 42);
}
.centerized {
  text-align: center;
}
main {
  margin-top: 10vh;
  margin-bottom: 10vh;
  margin-left: 5vw;
  margin-right: 5vw;
}
.boldd {
  font-size: 1.8em;
  font-weight: 600;
}
.b2 {
  margin-top: 2em;
}
nav {
  height: 3em;
  background-color: unset;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 3vh;
  
}
.navlogo {
  height: 100%;
}
.navlg {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-head {
  display: inline-block;
  margin-left: 1vw;
  font-weight: 700;
}
.head-t{
    font-weight: 400;
    font-size: 0.8em;
}
.form-c{
    margin: 0 auto;
    margin-top: 5vh;
    border-radius: 10px;
    background-color: white;
    filter: drop-shadow(5px 5px 10px #aaa);
    width: 60%;
    text-align: left;
    display: flex;
    justify-content: space-evenly;
    min-width: 586px;
}
.wrap-f{
    padding: 5%;
}
.form-t{
    font-weight: 600;
    color: #222;
    font-size: 1.3em;
}
.txb{
    padding: 5% 3%;
    border: 1px solid #bbb;
    background-color: #fcfcfc;
    border-radius: 10px;
    font-size: 1em;
    outline: none;
}
.txbm{
    font-family: monospace;
}
.form-b{
    color: #fff;
    background-color: #2359C2;
    display: inline-block;
    padding: 2%;
    width: 15%;
    margin-top: 5vh;
    border-radius: 10px;
    text-align: center;
    filter: drop-shadow(0px 0px 10px #2358c28c);
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.form-b:hover{
    background-color: #1d4ba7;
}
.legal-txt{
    color: #999;
    font-size: 0.8em;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.cdown{
    font-family: monospace;
    font-size: 2.5em;
    margin-top: 3em;
}
.inf{
  margin-top: 3em;
}
@media only screen and (max-width: 600px) {
  main{
      width: 90vw;
     margin: 0 auto;
     margin-top: 5vh;
  
  margin-bottom: 10vh;
  }
  
  .form-c{
      min-width: unset;
      width: 100%;
      display: block;
  }
  .form-b{
      width: 100%;
      height: 3em;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
  }
  .txb{
      width: 100%;
  }
  
}