html, body {
  overflow-x: hidden;
}


.background {
  position: absolute;
  z-index: 0;
  width: 1400px;
  height: 800px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.register_box {
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
}

.header {
  color: white;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 50px 0 50px 0;
}
.text {
  color: #ff0000;
  font-size: 18px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin: 0px 0px 0px -20px;
}

.input_box {
  display: flex;
  flex-direction: column;
  margin: 15px 0 15px 0;
}

.input_box label {
  color: white;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin: 10px 0 5px 0;
}

.input_box input {
  display: block;
  padding: 0px 10px 0 10px;
  font-size: 18px;
  width: 500px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.captcha {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.captcha .refresh_captcha {
  padding: 10px 0px 30px 17px;
  width: 50px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #f0f0f0;
}

.captcha .new_captcha {
  padding: 5px 10px 0 10px;
  text-align: center;
  font-size: 18px;
  width: 150px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #ffffff;
}

.captcha .input_box input {
  width: 290px;
}

.register_box form > div:nth-child(5) {
  display: flex;
  position: relative;
  justify-content: flex-end;
  flex-direction: row;
  gap: 10px;
}

.register_button div:nth-child(2) button i {
  margin-right: 10px;
}

.register_button div:nth-child(3) button i {
  margin-right: 20px;
}

.register_button div button {
  width: 500px;
  height: 40px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin: 10px 0px 10px 0;
  border: none;
  border-radius: 3px;
}

.register_button > div:nth-child(1) button {
  color: #2d0066;
  background-color: #ffde49;
}
.register_button > div:nth-child(2) button {
  color: #ffffff;
  background-color: #e03e28;
}
.register_button > div:nth-child(3) button {
  background-color: #4336ff;
  color: #ffffff;
}
