*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  box-sizing: border-box;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
}
.background {
  align-items: center;
  background: url(../media/image_01new.jpg);
  background-position: top;
  background-size: cover;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 95vh;
  justify-content: center;
  position: relative;
  width: 100%;
}
.required {
  background-color: #f34134;
  border-radius: 5px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  display: block;
  font-size: 16px;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}
.btn {
  border: 0;
  border-radius: 4px;
  color: white !important;
  font-size: 20px;
  line-height: 45px;
  margin: 5px 0;
  position: relative;
  transition: all 0.1s;
  width: 100%;
}
.btn--colored {
  background-color: #00bfff;
}
.btn--colored:hover {
  background-color: #3cf;
  cursor: pointer;
}
.btn--pink {
  background-color: #ff3366;
}
.btn--pink:hover {
  background-color: #ff668c;
  cursor: pointer;
}
.form__module--box {
  display: none;
  flex-direction: column;
  margin: 2.5rem 0;
}
.form__module--box-2 {
  font-size: 20px;
  font-weight: 900;
}
select {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  font-size: 18px;
  margin: 1rem auto;
  padding: 0.5rem 0rem;
  width: 24%;
}
input {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 18px;
  margin: 0.5rem;
  padding: 11.5px 10px;
  width: 100%;
}
.footer {
  align-items: center;
  background-color: #000;
  display: flex;
  font-size: 14px;
  height: 7.5rem;
  justify-content: center;
}
.header {
  align-items: center;
  border: 5px solid rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  height: 400px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 450px;
  z-index: 0;
}
.header::before {
  background: #e9e9e9;
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.header--box {
  background: #ff5a02;
  color: #fff;
  padding: 0.5rem;
  position: relative;
  width: 100%;
}
.header--box::after {
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 11px solid #ff5a02;
  bottom: -9px;
  content: "";
  height: 0;
  left: 66px;
  position: absolute;
  width: 0;
}
.header--title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.header--subtitle {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.header--copy {
  color: #717171;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  padding: 2 2rem;
}
.login {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  font-size: 15px;
  font-weight: 100;
  justify-content: end;
  left: 0;
  padding: 2rem 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.login--span {
  color: #fff;
  cursor: pointer;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 1000px) {
  .background {
    height: 55rem;
    justify-content: center;
    padding: 0 5%;
  }
  .header {
    top: 5rem;
    width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .login {
    padding: 0.5rem 5rem;
  }
}
a {
  color: inherit;
}
