body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-container {
  background-color: rgba(20, 20, 30, 0.85);
  border: 2px solid #7f00ff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px #7f00ff;
  max-width: 520px;
  width: 100%;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.register-container h2 {
  font-size: 26px;
  color: #ffcc00;
  margin-bottom: 24px;
}

.register-form input {
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  background: rgba(44, 44, 62, 0.9);
  border: 1px solid #555;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
}

.register-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease;
}

.register-form button:hover {
  background: linear-gradient(to right, #a64bf4, #2f00a0);
  box-shadow: 0 0 10px #7f00ff;
}

.login-link {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.login-link a {
  color: #ffcc00;
  text-decoration: underline;
}
