/* Base page style */
body {
  background: #f0f2f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Form container */
.form-container {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 380px;
  text-align: center;
}

/* Heading */
.form-container h2 {
  color: #2e7d32; /* Green */
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  background-color: #2e7d32; /* Green */
  color: white;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1b5e20;
}

/* Optional: link under form */
.form-container p a {
  color: #2e7d32;
  text-decoration: none;
}

.form-container p a:hover {
  text-decoration: underline;
}
