* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  padding: 0;
  margin: 0;
}

/* Navbar */
.navbar {
  background-color: #0044cc;
  padding: 15px 30px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-weight: 600;
  font-size: 22px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* Form Container */
.form-container {
  background: white;
  padding: 30px;
  max-width: 500px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

form input, form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form input:focus, form select:focus {
  outline: none;
  border-color: #0044cc;
  box-shadow: 0 0 4px rgba(0, 68, 204, 0.5);
}

form button {
  width: 100%;
  background-color: #0044cc;
  color: white;
  padding: 14px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  background-color: #0032a8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .form-container {
    margin: 30px 20px;
  }
}
