@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #5e9fca;
  color: #333;
  font-size: 16px;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-box {
  width: 100%;
  max-width: 450px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: none;
}
.form-box.active {
  display: block;
}
h2 {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  color: #333;
}
input, select{
  width: 100%;
  padding: 12px;
  background: #eee;
  margin: 10px 0;
  border: none;
  outline: none;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
}
button {
  width: 100%;
  padding: 12px;
  background: #5e9fca;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}
button:hover {
  background: #4a8bb8;
}
p {
  text-align: center;
  font-size: 14px;
  color: #666;
}
p a {
  color: #5e9fca;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}
p a:hover {
  text-decoration: underline;
}
.error-message {
  padding: 12px;
  background: #e7b4b8;
  text-align: center;
  color: red;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}
