* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI";
}

body {
  background: linear-gradient(to right, #1e3c72, #5bff8b);
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  padding: 35px 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  margin: 0px 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.container h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #2a5298;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

form button {
  width: 100%;
  padding: 13px;
  background: #2a5298;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}

form button:hover {
  background: #1e3c72;
}

.footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #2a5298;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
