.main-content-signup {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
  background-color: #f6f7f8;
  padding-top: 160px;
  padding-bottom: 40px;
  gap: 24px;
}

.sign-up-main-container {
  position: relative;
  width: 598px;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 48px 32px;
  background-color: white;
}

.sign-up-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 422px;
}

.sign-up-form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

#signup-headline {
  font-weight: 700;
  font-size: 61px;
  line-height: 120%;
  text-align: center;
  line-height: 120%;
}

.headline-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 422px;
  height: auto;
  margin-bottom: 25px;
}

.sign-up-headline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 315px;
  width: auto;
}

.user-input-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 422px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #D1D1D1;
  height: 48px;
  position: relative;
  gap: 10px;
  padding: 12px 21px 12px 21px;
}

.user-sign-input-password {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 422px;
  height: 70px;
  position: relative;
  margin-top: 16px;
}

.footer-sign-up {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
}

.checkbox-privacy-policy-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.checkbox-privacy-policy:checked {
  visibility: hidden;
}

#acception-privacy-policy {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #a8a8a8;
  letter-spacing: 0;
}

#privacy-policy {
  color: #29abe2;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.arrow-back-link {
  position: absolute;
  top: 40px;
  left: 60px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 422px;
  gap: 10px;
}

#btn-sign-up:disabled {
  color: #666;
  cursor: not-allowed;
}

.sign-up-success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  width: 326px;
  background-color: #2A3647;
  padding: 0 25px 0 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.sign-up-success-message {
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
}

.sign-up-success-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.sign-up-success-overlay.show {
  display: flex;
}

.sign-up-success-overlay.show .sign-up-success-container {
  transform: translateY(0);
  opacity: 1;
}

.checkbox-privacy-policy {
  appearance: none;
  border: 2px solid #2A3647;
  border-radius: 3px;
  background: white;
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
}


.checkbox-privacy-police-icon-check {
  cursor: pointer;
}

.checkbox-wrapper {
  position: relative;
  width: 16px;
  height: 16px;
}

.checkbox-wrapper input,
.checkbox-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}
