*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #d5cfd3;
  background-image: url("../media/1060bg1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  color: #fff;
  font-family: "Arsenal", sans-serif;
  font-weight: 900;
  line-height: 1.7;
  transition: all 500ms ease-in 0s;
}
.required {
  color: red;
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.7em;
}
.header--copy {
  color: #fff;
}
.btn--color {
  align-items: center;
  background-clip: padding-box;
  background-color: red;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: 20px 30px;
  position: relative;
  text-decoration: none;
  touch-action: manipulation;
  transition: all 250ms;
  user-select: none;
  vertical-align: baseline;
  -webkit-user-select: none;
  width: auto;
}
.btn--color:hover {
  background-color: rgb(238, 62, 62);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  cursor: pointer;
  transform: translateY(-1px);
}
.btn {
  align-items: center;
  background-clip: padding-box;
  background-color: #b87fb6;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: 20px 30px;
  position: relative;
  text-decoration: none;
  touch-action: manipulation;
  transition: all 250ms;
  user-select: none;
  vertical-align: baseline;
  -webkit-user-select: none;
  width: auto;
}
.btn:hover {
  background-color: #bc98bb;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  cursor: pointer;
  transform: translateY(-1px);
}
.btn--box {
  margin: 2rem 0;
}
.label-for-checking {
  background-color: #afafaf;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 2px;
  margin-right: 1px;
  padding: 8px;
  user-select: none;
}
.label-for-checking-active {
  background-color: red;
}
.input {
  border: none;
  border-radius: 5px;
  color: #333;
  font-size: 20px;
  margin: 1.5rem 0;
  min-width: 300px;
  padding: 1.5rem 0.5rem;
  text-align: center;
}
.form__select--select {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #495057;
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
}
.form__select--box {
  margin: 5px;
  min-width: 200px;
}
.logo {
  margin-bottom: 20px;
  width: 220px;
}
.progressbar {
  background: gray;
  border-radius: 2px;
  color: #000;
  display: flex;
  height: 10px;
  margin-bottom: 25px;
  width: 100%;
}
.progressbar p {
  align-items: center;
  display: flex;
  font-size: 16px;
  justify-content: center;
  width: calc(100% / 6);
}
.progressbar--active {
  background-color: red;
  transition: all 0.3s;
}
.content {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.content--bg {
  text-align: center;
  width: 40%;
}
.content--p-2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.container__box-2 {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 2rem;
}
.container__box-2--form {
  align-items: center;
  display: none;
  flex-direction: column;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 900px) {
  body {
    background-image: url("../media/1060bg1mobile.jpg");
  }
  .logo {
    margin-bottom: 5px;
    width: 180px;
  }
  .content {
    margin-top: 40%;
  }
  .content--bg {
    width: 100%;
  }
  .container__box-2 {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 1rem;
  }
  .form__select {
    flex-direction: column;
  }
  .btn--color,
  .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  .btn--box {
    margin: 0;
  }
}
