.top {
  background-color: #0C7E7E;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .top {
    margin-top: 165px;
  }
}
.top .lang {
  position: absolute;
  top: 25px;
  right: 25px;
  color: white;
  width: 30px;
  height: 30px;
  background-color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.top .logoTop {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}
.top img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

body {
  background-color: #0C7E7E;
}

.bottom {
  position: relative;
  z-index: 0;
}
.bottom::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 900px;
  background-color: #0C7E7E;
  left: 0;
  z-index: -1;
}
.bottom img {
  max-width: 99%;
}
.confirm {
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.confirm p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 200px;
  background-color: white;
  color: black;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form {
  width: 100%;
  background-color: #0C7E7E;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}
.form img {
  position: absolute;
  display: block;
  top: 125vh;
  z-index: -1;
  max-width: 99%;
}
.form form {
  width: 80%;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  justify-items: center;
}
.form form label {
  color: white;
  margin-bottom: 10px;
  width: 50%;
}
.form form input {
  margin-bottom: 10px;
  width: 50%;
}
.form form .contRadio {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}
.form form .contRadio label, .form form .contRadio input[type=radio] {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}
.form form p {
  color: white;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}
.form form input[type=radio] {
  margin-right: auto;
}