.home-display {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.first-box_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .first-box_wrapper {
    flex-direction: column;
  }
}
.landing_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2vh, 2vw, 1rem);
  gap: 0.5rem;
  text-align: start;
  width: 100%;
  max-width: 800px;
}
.landing_wrapper h1 {
  font-size: clamp(1vh, 5vw, 2rem);
}
.landing_wrapper p {
  font-size: clamp(1vh, 5vw, 1rem);
}
.landing_wrapper,
.form_container {
  flex: 1 2;
}
.form_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
}
.join-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: clamp(1vh, 2vw, 0.5rem);
  width: 100%;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
.form-title_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: clamp(1vh, 2vw, 0.5rem);
  padding-bottom: clamp(1vh, 2vw, 0.5rem);
}
.form-title_container h1 {
  font-size: clamp(1vh, 5vw, 2rem);
}
.form-data-user {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.label-item {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: clamp(1vh, 2vw, 0.5rem);
  font-size: clamp(1vh, 5vw, 1.1rem);
}
.input-item {
  width: 100%;
  border: none;
  padding: clamp(1vh, 2vw, 0.5rem);
  font-size: clamp(1vh, 5vw, 1rem);
  border-radius: 0.5rem;
}
.alert-item {
  display: none;
  cursor: default;
  border-radius: 0.5rem;
  padding: clamp(1vh, 2vw, 0.5rem);
  font-size: clamp(1vh, 5vw, 1rem);
}
.form-data-password {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.label-password-item {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: clamp(1vh, 2vw, 0.5rem);
  font-size: clamp(1vh, 5vw, 1.1rem);
}
.password-accept-background {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 0.5rem;
}
.password-confirm-background {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 0.5rem;
}
.fa-eye-slash {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: clamp(1vh, 5vw, 1rem);
  padding: clamp(1vh, 2vw, 0.5rem);
  transition: ease-in-out 330ms;
}
.fa-eye {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: clamp(1vh, 5vw, 1rem);
  padding: clamp(1vh, 2vw, 0.5rem);
  transition: ease-in-out 330ms;
}
.form-data-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.buttons-reflection {
  position: relative;
  display: inline-block;
  border-radius: 0.5rem;
  overflow: hidden;
}
.buttons-reflection::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  backdrop-filter: blur(0.5px);
  clip-path: ellipse(100% 50% at 50% 0%);
}
.buttons-inner-light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 0.5rem;
  pointer-events: none;
}
.form-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: clamp(1vh, 5vw, 1rem);
  padding: clamp(1vh, 2vw, 0.5rem) 1.5rem;
  border: none;
  z-index: 0;
  overflow: hidden;
}
.form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 330ms ease-in-out;
}
.form-btn:hover::before {
  opacity: 1;
}
/* Global Styles */
.landing_wrapper,
.form-title_container h1,
.label-item,
.label-password-item,
.fa-eye-slash,
.fa-eye {
  color: #f0f0f0;
}
.label-item,
.label-password-item {
  background: rgba(255, 255, 255, 0.15);
}
.input-item {
  color: #353535;
}
.alert-item {
  color: #f0f0f0;
  background: linear-gradient(0deg, rgb(167, 20, 20) 0%, rgb(97, 8, 8) 60%);
}
.join-form {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    0deg,
    rgba(20, 46, 95, 0.3) 0%,
    rgb(92, 177, 216) 80%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.password-accept-background,
.password-confirm-background {
  background: rgba(255, 255, 255, 0.15);
}
.form-btn {
  color: #f0f0f0;
  background: linear-gradient(
    0deg,
    rgba(0, 153, 255, 1) 0%,
    rgba(40, 93, 128, 1) 60%
  );
}
.form-btn::before {
  background: linear-gradient(
    0deg,
    rgba(0, 153, 255, 1) 0%,
    rgb(60, 126, 170) 60%
  );
}
.form-btn:hover::before {
  opacity: 1;
}
.fa-eye-slash:hover {
  color: #162955;
}
.fa-eye:hover {
  color: #162955;
}
.buttons-reflection {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.8);
}
.buttons-reflection::before {
  background: rgba(255, 255, 255, 0.2);
}
.buttons-inner-light {
  box-shadow: inset 0px 0px 8px rgba(78, 184, 255, 0.9);
}
