* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0c0d11;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.signup-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.signup-container {
  background: linear-gradient(
    135deg,
    rgba(128, 94, 240, 0.1) 0%,
    rgba(12, 13, 17, 0.8) 100%
  );
  border: 2px solid #805ef0;
  border-radius: 16px;
  padding: 45px 30px;
  box-shadow: 0 20px 60px rgba(128, 94, 240, 0.2);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 900px;
  margin-top: 150px;
}

.signup-header {
  text-align: center;
  margin-bottom: 35px;
}

.signup-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #805ef0 0%, #9575ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signup-subtitle {
  font-size: 14px;
  color: #b0b0b0;
  letter-spacing: 0.5px;
}

.signup-form-group {
  margin-bottom: 20px;
}

.signup-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.signup-input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(128, 94, 240, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.signup-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #805ef0;
  box-shadow: 0 0 20px rgba(128, 94, 240, 0.3);
}

.signup-input::placeholder {
  color: #6b6b7f;
}

.signup-input.error {
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.05);
}

.error-message {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.password-toggle {
  position: relative;
}

.signup-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.signup-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #805ef0;
}

.signup-checkbox-label {
  font-size: 13px;
  color: #b0b0b0;
  cursor: pointer;
  margin: 0;
}

.signup-checkbox-label a {
  color: #805ef0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.signup-checkbox-label a:hover {
  color: #9575ff;
  text-decoration: underline;
}

.signup-submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #805ef0 0%, #9575ff 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 10px;
}

.signup-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(128, 94, 240, 0.4);
}

.signup-submit-btn:active {
  transform: translateY(0);
}

.signup-submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.signup-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
  font-size: 13px;
  color: #6b6b7f;
}

.signup-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(128, 94, 240, 0.2);
}

.signup-divider span {
  background-color: #0c0d11;
  padding: 0 10px;
  position: relative;
}

.signup-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #b0b0b0;
}

.signup-footer a {
  color: #805ef0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-footer a:hover {
  color: #9575ff;
}

.success-message {
  display: none;
  background-color: rgba(76, 175, 80, 0.1);
  border: 1.5px solid #4caf50;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  color: #4caf50;
  font-size: 14px;
  animation: slideIn 0.3s ease;
}

.success-message.show {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .signup-container {
    padding: 35px 20px;
  }

  .signup-title {
    font-size: 26px;
  }

  .signup-submit-btn {
    padding: 12px;
    font-size: 14px;
  }
}
