@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}

/* Container */
.signup-container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
}

/* Box */
.signup-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  color: white;
}

/* Branding */
.brand {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.brand span {
  color: #00ff99;
}

/* Text */
h2 {
  color: #f1f1f1;
  font-weight: 500;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Input Fields */
.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  color: #ccc;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

/* Signup Button */
.signup-btn {
  width: 100%;
  padding: 12px;
  background: #00ff99;
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.signup-btn:hover {
  background: #00e58a;
  transform: translateY(-2px);
}

/* Footer Links */
.back-login {
  margin-top: 20px;
  color: #ccc;
  font-size: 0.9rem;
}

.back-login a {
  color: #00ff99;
  text-decoration: none;
}

.back-login a:hover {
  text-decoration: underline;
}
