.login-logo-left {
  position: absolute;
  top: 67px;
  left: 77px;
}

.login-logo-left img {
  max-width: 100%;
}

.login-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.outside-form-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 598px;
  width: 100%;
  height: 630px;
  padding: 0 16px;
  border-radius: 30px;
  background-color: #ffffff;
  box-shadow: 0px 0px 14px 3px #0000000a;
}

.arrow-login-back {
  position: absolute;
  right: 318px;
  top: 24px;
  width: 32px;
  height: 32px;
}

.arrow-login-back:hover img {
  background-color: #eeeeee;
  border-radius: 50%;
  transform: translateX(-1px);
}

.form-content {
  max-width: 422px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.headline-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headline {
  max-width: 315px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.headline h1 {
  font-size: 61px;
}

.input-content {
  max-width: 422px;
  width: 100%;
  height: 326px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.outside-input {
  max-width: 422px;
  width: 100%;
  height: 48px;
  border: solid 1px #d1d1d1;
  border-radius: 10px;
  padding: 12px 21px 12px 21px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.outside-input-confirm {
  max-width: 422px;
  width: 100%;
  height: 48px;
  border: solid 1px #d1d1d1;
  border-radius: 10px;
  padding: 12px 21px 12px 21px;
  gap: 10px;
}

.inside-input {
  max-width: 380px;
  width: 100%;
  height: 24px;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 400;
}

.checkbox-signup {
  width: 230px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.checkbox-signup-span {
  font-size: 16px;
  font-weight: 400;
  color: #a8a8a8;
}

.checkbox-content a {
  color: #29abe2;
}

.checkbox-content a:hover {
  color: #29abe2;
  transform: scale(1.02);
  transform-origin: center center;
  text-decoration: underline;
  font-weight: 500;
}

.bt-signup {
  width: 126px;
  height: 55px;
  background-color: #2a3647;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 21px;
  font-weight: 700;
  transition: all 100ms ease-in-out;
}

.bt-signup:hover {
  background-color: #29aae1;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transform: translateX(-1px);
}

footer {
  position: absolute;
  width: 100%;
  bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-information-content {
  width: 246px;
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.legal-information-content a {
  color: #a8a8a8;
  padding: 8px;
}

.legal-information-content a:hover {
  color: #29abe2;
  transform: scale(1.02);
  font-weight: 600;
}

@media screen and (max-width: 970px) {
  .login-logo-left {
    top: 37px;
    left: 38px;
  }

  .login-logo-left img {
    width: 64px;
    height: 78px;
  }
}

@media screen and (max-width: 600px) {
  .login-content {
    padding: 0 16px;
  }

  .arrow-login-back {
    right: 250px;
  }
}

@media screen and (max-width: 428px) {
  .outside-form-content {
    position: relative;
    max-width: 396px;
    padding: 16px;
    height: 486px;
  }

  .headline h1 {
    font-size: 47px;
  }

  .arrow-login-back {
    right: 175px;
    top: 10px;
  }

  .form-content {
    gap: 0;
  }

  .login-logo-left {
    top: 24px;
    left: 30px;
  }

  .login-logo-left img {
    width: 44px;
    height: 58px;
  }

  .input-content {
    justify-content: center;
    gap: 8px;
  }
}