.signup-container {
  display: flex;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  overflow: hidden;
}

.left-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #151515, #0a0a0a);
  padding: 2rem;
  position: relative;
}

.left-panel::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  filter: blur(80px);
}

.left-panel h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  z-index: 2;
}

.left-panel span {
  color: #e6e6e6;
}

.right-panel {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 20px 20px 0;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.right-panel h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #ffffffdd;
}

.login-text {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #bdbdbd;
}

.login-text a {
  color: #dcdcdc;
  text-decoration: underline;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signup-form input {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.signup-form input:focus {
  border: 1px solid #5a67ff;
  background: rgba(255, 255, 255, 0.12);
}

.password-wrapper {
  position: relative;
}

.password-wrapper span {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  color: #ccc;
}

.signup-form button {
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: #5a67ff;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s;
}

.signup-form button:hover {
  background: #7c84ff;
}

.or-divider {
  text-align: center;
  margin: 2rem 0 1rem;
  font-size: 0.9rem;
  color: #aaa;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 40%;
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}

.social-signin {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-signin button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.social-signin button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.terms {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
}

.terms a {
  color: #ccc;
  text-decoration: underline;
}
