* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #fdf7f8;
  color: #171717;
  overflow-x: hidden;
}

.signup-page {
  width: 100%;
  min-height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 54px 20px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(236, 182, 197, 0.35), transparent 32%),
    radial-gradient(circle at bottom right, rgba(236, 182, 197, 0.28), transparent 32%),
    linear-gradient(135deg, #fff7f8 0%, #fdecef 100%);
}

.back-btn {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 50;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(222, 131, 157, 0.25);
  color: #c97484;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(220, 115, 141, 0.14);
  transition: 0.3s ease;
}

.back-btn:hover {
  transform: translateX(-3px);
  background: #fff;
}

.soft-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.45;
}

.soft-shape-left {
  width: 360px;
  height: 360px;
  background: #f5cad5;
  left: -140px;
  bottom: -140px;
}

.soft-shape-right {
  width: 340px;
  height: 340px;
  background: #f8d7e0;
  right: -130px;
  top: -130px;
}

.gold-curve {
  position: absolute;
  border: 1px solid rgba(210, 167, 97, 0.35);
  border-radius: 50%;
}

.gold-curve-left {
  width: 620px;
  height: 620px;
  left: -430px;
  bottom: -370px;
}

.gold-curve-right {
  width: 620px;
  height: 620px;
  right: -430px;
  top: -370px;
}

.bg-leaf {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.55;
}

.bg-leaf span {
  width: 42px;
  height: 18px;
  border: 1px solid rgba(210, 167, 97, 0.38);
  border-radius: 100px 0;
  transform: rotate(-28deg);
}

.bg-leaf-left {
  top: 58px;
  left: 46px;
}

.bg-leaf-right {
  right: 46px;
  bottom: 58px;
}

/* CARD */

.signup-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 30px;
  padding: 34px 48px 34px;
  box-shadow:
    0 24px 70px rgba(226, 173, 188, 0.18),
    0 10px 30px rgba(0,0,0,0.04);
  animation: cardEntrance 0.85s cubic-bezier(.18,.89,.32,1.15);
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(45px) scale(0.97);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* BRAND */

.brand-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.brand-icon i {
  color: #d5a25d;
  font-size: 17px;
}

.auth-brand {
  display: block;
  text-align: center;
  text-decoration: none;
}

.auth-brand > span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: 9px;
  text-transform: uppercase;
  color: #171717;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-subtitle span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d5a25d, transparent);
}

.brand-subtitle small {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #de839d;
  font-size: 9px;
  font-weight: 700;
}

.small-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 16px 0 20px;
}

.small-divider span {
  width: 34px;
  height: 1px;
  background: rgba(213, 162, 93, 0.4);
}

.small-divider i {
  color: #d5a25d;
  font-size: 7px;
}

/* HEADINGS */

.signup-heading {
  text-align: center;
  margin-bottom: 22px;
}

.signup-heading h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 6px;
}

.signup-heading p {
  font-size: 13px;
  color: #696969;
}

/* FORM */

.signup-form {
  display: flex;
  flex-direction: column;
}

.input-group {
  position: relative;
  margin-bottom: 12px;
}

.input-group input {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(230, 178, 193, 0.55);
  background: rgba(255,255,255,0.72);
  padding: 0 54px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: 0.3s ease;
}

.input-group input:focus {
  border-color: #de839d;
  box-shadow: 0 0 0 5px rgba(222,131,157,0.11);
}

.input-group input::placeholder {
  color: #9b9b9b;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #de839d;
  font-size: 15px;
}

.password-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  color: #888;
  font-size: 16px;
}

/* BUTTON */

.signup-btn {
  height: 56px;
  border: none;
  border-radius: 17px;
  background: linear-gradient(135deg, #f19db5, #dc738d);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3.6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 16px 38px rgba(220,115,141,0.24);
  margin-top: 6px;
}

.signup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(220,115,141,0.34);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.or-divider span {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.or-divider p {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: #888;
}

.login-link {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.login-link a {
  color: #de839d;
  text-decoration: none;
  font-weight: 700;
}

.signup-footer {
  position: static;
  z-index: 10;
  margin-top: 14px;
  color: #8d8d8d;
  font-size: 12px;
  text-align: center;
}

/* TABLET */

@media (max-width: 900px) {
  .signup-page {
    padding: 42px 18px 22px;
  }

  .signup-card {
    max-width: 520px;
    padding: 34px 36px;
  }

  .auth-brand > span {
    font-size: 39px;
    letter-spacing: 8px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .signup-page {
    padding: 78px 14px 18px;
  }

  .back-btn {
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
  }

  .signup-card {
    max-width: 390px;
    padding: 30px 20px 24px;
    border-radius: 26px;
  }

  .auth-brand > span {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .brand-subtitle span {
    width: 34px;
  }

  .brand-subtitle small {
    font-size: 8px;
    letter-spacing: 3.5px;
  }

  .signup-heading h1 {
    font-size: 32px;
  }

  .signup-heading p {
    font-size: 12px;
  }

  .input-group input {
    height: 52px;
    font-size: 14px;
    padding: 0 50px;
  }

  .signup-btn {
    height: 54px;
  }

  .signup-footer {
    font-size: 11px;
    line-height: 1.5;
  }
}