* {
  margin: 0px;
  padding: 0px;
}
.container_root {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 92vh; /* Full viewport height */
}
.container_left {
  background-color: #171738;
  width: 960px;
  height: 1024px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.container_namegen_root_left {
  /* border: 1px solid red; */
  width: 400px;
  height: 420px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  align-content: center;
  text-align: center;
  background-color: #ededed;
}
.container_namegen_left_content {
  /* border: 1px solid red; */
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #171738;
  font-family: helvetica;
}
.container_namegen_left_content_header {
  /* border: 1px solid red; */
  display: flex;
  align-self: center;
  justify-content: flex-end;
  align-items: center;
  width: 190px;
}
.container_namegen_left_content_header h2 {
  font-size: 24px;
  font-weight: bolder;
}
.container_namegen_left_content_header button {
  border: none;
  background: none;
  cursor: pointer;
  margin-left: 3px;
}
.container_namegen_left_content_header button img {
  width: 30px;
  opacity: 0.2;
  transition: all 0.5s ease 0s;
}
.container_namegen_left_content_header button img:hover {
  opacity: 1;
}
.container_namegen_left_content_dob {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.container_namegen_left_content_dob form {
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  width: 250px;
}
.dob_input_form {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dob_input_form input {
  border-radius: 4px;
  border: 0px;
  height: 25px;
  text-align: center;
}
.dob_input_form label {
  color: #17173870;
}
.container_namegen_left_content_gender {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.container_namegen_left_content_gender select {
  border-radius: 4px;
  border: 0px;
  width: 180px;
  height: 25px;
  padding-left: 10px;
  cursor: pointer;
}
.container_namegen_left_content_submit button {
  width: 250px;
  height: 40px;
  border-radius: 20px;
  color: #ffffff;
  background-color: #171738;
  font-weight: 600;
  transition: all 0.5s ease 0s;
}
.container_namegen_left_content_submit button:hover {
  background-color: #171738d6;
  width: 260px;
  font-size: 14px;
  border: 0px;
  cursor: pointer;
}
.container_right {
  background-color: #ffffff;
  width: 960px;
  height: 1024px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container_namegen_root_right {
  /* border: 1px solid red; */
  width: 400px;
  height: 420px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  align-content: center;
  background-color: #171738;
}
.container_namegen_right_content {
  /* border: 1px solid red; */
  height: 250px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: helvetica;
}
.container_namegen_right_content_header h1 {
  font-size: 40px;
  font-weight: bolder;
}
.container_namegen_right_content_descript {
  /* border: 1px solid red; */
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-top: 10px;
}
.container_namegen_right_content_descript p {
  width: 250px;
  font-size: 14px;
}
.container_namegen_right_content_descript a {
  margin-top: 20px;
}
.container_namegen_right_content_descript a img {
  width: 26px;
  opacity: 0.4;
  transition: all 0.5s ease 0s;
}
.container_namegen_right_content_descript a img:hover {
  width: 27px;
  opacity: 1;
  cursor: pointer;
}
.container_copyright {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  text-align: right;
  margin-right: 30px;
  margin-bottom: 30px;
  gap: 6px;
  font-family: helvetica;
  color: #8f8f8f;
}
.container_copyright ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 10px;
  transition: all 0.5s ease 0s;
}
.container_copyright ul li a {
  text-decoration: none;
  color: #8f8f8f;
  transition: all 0.5s ease 0s;
}
.container_copyright ul li a:hover {
  color: #171738;
  font-weight: 700;
}
