@font-face {
    font-family: iqosRegular;
    src: url(iqos-regular.ttf);
}
@font-face {
    font-family: iqosbold;
    src: url(iqos-bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: iqosRegular;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}

.container {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: #fff;
  padding: 25px;
  /* border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
}
.container header {
  font-size: 16px;
  color: #34303D;
  font-family: iqosbold;
  text-align: center;
}
.container p {
  font-size: 16px;
  color: #34303D;
  text-align: center;
  margin-top: 55px;
}
.container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #333;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 16px;
  color: #808080;
  margin-top: 15px;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  column-gap: 25px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #808080;
  font-size: 16px;
}
.form button {
  height: 50px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-top: 25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #34303D;
}
.form button:hover {
  background: #00D1D2;
  color: #34303D;
}
/*Responsive*/
/*@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}*/