/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Container */
.register-container {
  max-width: 450px;
  margin: 80px auto;
  padding: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #fff;
}

/* Icon */
.register-container i {
  color: #333;
  margin-bottom: 15px;
}

/* Heading */
.register-container h2 {
  margin-bottom: 25px;
  color: #333;
}

/* Form Inputs */
.register-form input,
.register-form select {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.register-form input:focus,
.register-form select:focus {
  outline: none;
  border-color: #000;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background-color: #333;
}

/* Login Link */
.login-link {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.login-link a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

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