/* General Styling */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #FFF8E1; /* light cream */
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #4CAF50; /* green */
  color: white;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links .active {
  border-bottom: 2px solid #FF9800; /* orange */
}

.btn {
  background: #FF9800;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e68900;
}

/* Register Section */
.register {
  text-align: center;
  padding: 3rem 10%;
}

.register h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #4CAF50;
}

.register p {
  margin-bottom: 2rem;
  color: #555;
}

/* Form Styling */
.register-form {
  max-width: 450px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.register-form label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: bold;
}

.register-form input,
.register-form select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.register-form input:focus,
.register-form select:focus {
  outline: none;
  border-color: #4CAF50;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #4CAF50;
  color: white;
  margin-top: 2rem;
}
