body {
  font-family: 'Poppins', sans-serif;
  background: #7ddcd3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.form-container {
  background: #f5f9f9;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 5px 10px rgb(255, 255, 255);
  text-align: center;
}

h2 {
  background: #00777f;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

h2 span {
  display: block;
  font-style: italic;
}

form {
  margin-top: 15px;
  text-align: left;
}

label {
  font-weight: bold;
  font-size: 13px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

button {
  width: 100%;
  background: #00777f;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #005f68;
}
