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;
}

.main_box {
  display: flex;
  position: relative;
  flex-direction: row;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 40px 40px 20px 50px;
  backdrop-filter: blur(10px);
  width: 1200px;
  overflow: hidden;
}

.login_box {
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  margin-left: 25px;
}
.description_box {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 600px;
  height: 700px;
  overflow: hidden;
}

.description_box .header {
  color: #00ffff;
  font-size: 50px;
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 500;
  z-index: 1;
  margin: 60px 10px 50px;
  text-align: center;
  width: 550px;
}

.description_box .text {
  width: 500px;
  color: #add8e6;
  font-size: 24px;
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  z-index: 1;
  margin: 60px 10px 50px 30px;
}

.description_box .background {
  position: absolute;
  z-index: 1;
  width: 550px;
  height: 700px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0px 10px 0px 0px;
}

.login_box .header {
  color: white;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 50px 0 50px 0;
}
.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 15px 0 15px;
  font-size: 18px;
  width: 500px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}


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

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

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

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

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

.login_button > div:nth-child(1) button:hover {
  color: #2d0066;
  background-color: #bea535;
}
.login_button > div:nth-child(2) button:hover {
  color: #ffffff;
  background-color: #a02b1c;
}

.login_button > div:nth-child(3) button:hover {
  background-color: #2e24b3;
  color: #ffffff;
}
