/* Reset and base styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.register-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

/* Form box */
.form-box {
  background-color: #111;
  padding: 30px 25px;
  border-radius: 10px;
  /* box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); */
}

.form-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

/* Input group */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.input-group input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  background-color: #222;
  color: #fff;
  border-radius: 5px;
  transition: border 0.3s;
}

.input-group input:focus {
  outline: none;
  border-color: #ff0000;
}

/* Buttons */
.btn-red {
  background-color: #ff0000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-red:hover {
  background-color: #cc0000;
}

/* Login link */
.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-link a {
  color: #a200ff;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}
