@import url("./util2.css");

:root {
  --primary-color: #003478;
}

body {
  background-color: #f6f5f3;
}

.mt-20 {
  margin-top: 20px;
}

.mt-80 {
  margin-top: 80px;
}

.container {
  max-width: 512px;
  width: 100%;
  border-radius: 30px;
  padding: 60px;
  background-color: #fff;
}

.title {
  font-family: "semibold";
  font-size: 28px;
  color: #000;
  margin-bottom: 5px;
}

.desc-txt {
  font-size: 16px;
  color: #171717;
  font-family: "regular";
  line-height: 22px;
  margin-bottom: 28px;
}

.desc-link {
  display: inline-block;
  font-family: "semibold";
  color: #003478;
}

.label {
  display: block;
  font-size: 16px;
  font-family: "bold";
  color: #202020;
  margin-bottom: 6px;
}

.inp-box {
  outline: none;
  height: 52px;
  width: 100%;
  border: 2px solid #a2a3a3;
  border-radius: 15px;
  caret-color: #003478;
  font-family: "semibold";
  padding-left: 16px;
  font-size: 16px;
}

.inp-box:focus {
  border-color: #003478;
}

.inp-box::placeholder {
  font-size: 16px;
  color: #7b7a7a;
  font-family: "regular";
}

.inp-box.error {
  border-color: #ff6b00;
}

.error-txt {
  font-family: "regular";
  font-size: 12px;
  color: #ff6b00;
  margin-top: 6px;
  display: block;
}

.form-col-1 {
  margin-bottom: 16px;
}

.form-col-3 {
  margin-top: 38px;
}

.next-btn {
  width: 180px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  background-color: #003478;
  border-radius: 15px;
  color: #ffffff;
  font-size: 18px;
  font-family: "semibold";
}

.privacy-policy-btn {
  font-size: 16px;
  font-family: "bold";
  color: #003478;
  margin-left: auto;
}

@media screen and (max-width: 500px) {
  .container {
    border-radius: 0;
    padding: 60px 28px 36px;
    max-width: 100%;
    min-height: 100vh;
    height: 100%;
  }

  .title {
    font-size: 24px;
  }

  .desc-txt {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 19px;
  }

  .next-btn {
    border-radius: 5px;
  }

  .mobile-logo-cont {
    display: block;
  }

  .desc-logo-cont {
    display: none;
  }
}
