.signup-page {
  min-height: 100vh;
  display: flex;
}

.signup-left {
  flex: 1;
  background:
    linear-gradient(rgba(5, 12, 25, 0.72), rgba(5, 12, 25, 0.82)),
    url("../images/plant.jpg") center/cover no-repeat;
  color: white;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signup-logo img {
  height: 350px;
  width: auto;
}

.signup-left h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 620px;
  margin-bottom: 24px;
}

.signup-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #dbeafe;
  max-width: 560px;
}

.signup-right {
  width: 460px;
  background: white;
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-box {
  width: 100%;
}

.signup-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.signup-box .desc {
  color: #6b7280;
  margin-bottom: 34px;
  line-height: 1.5;
}

.signip-card {
  width: 420px;
  padding: 40px;
  border-radius: 24px;
  background: white;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
}

.login-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: #2563eb;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .signup-page {
    flex-direction: column;
  }

  .signup-left {
    min-height: 300px;
    padding: 32px 24px;
  }

  .logo img {
    height: 120px;
  }

  .signup-left h1 {
    font-size: 34px;
  }

  .signup-right {
    width: 100%;
    padding: 40px 24px;
  }
}

.signup-link {
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;