body {
  background-color: #040414;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-container {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  width: 400px;
}
.form-container h2 {
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.form-group label {
  color: #fff;
  font-size: 14px;
}
.form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  border-radius: 10px;
}
.form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.3);
}
/* .btn-custom {
  background-color: #ff5571;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}
.btn-custom:hover {
  background-color: #ff6699;
} */
.register-link {
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}
.register-link a {
  color: #ff5571;
  text-decoration: none;
}