.register-container {
  max-width: 450px;
  margin: 3rem auto;
}

.register-card {
  background: rgba(10, 30, 60, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3), 0 0 100px rgba(123, 44, 191, 0.2);
  border: 2px solid rgba(0, 212, 255, 0.4);
}

.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.register-subtitle {
  color: #b8b8b8;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #eaeaea;
}

.form-input {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff0d;
  color: #eaeaea;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-input:hover {
  border-color: #00d4ff;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #b8b8b8;
}

.terms-checkbox input {
  margin-top: 0.2rem;
}

.terms-checkbox .terms-link {
  color: #00d4ff;
  text-decoration: none;
  cursor: pointer;
}

.terms-checkbox .terms-link:hover {
  text-decoration: underline;
}

.register-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #b8b8b8;
}

.form-footer a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .register-card {
      padding: 2rem;
  }

  .register-title {
      font-size: 2rem;
  }
}
