* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background-color: #f9f9f9;
}
.prozone-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 40px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.logo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.title {
  font-size: 24px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  padding: 10px 24px;
  background-color: #1e5a96;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button.create-account {
  background: black;
  color: white;
  margin-top: 10px;
}
.help-text {
  margin-top: 14px;
  font-size: 12px;
  color: #666;
}
.help-text a {
  color: #1e5a96;
  text-decoration: none;
}
.footer-links {
  margin-top: 20px;
  font-size: 12px;
}
.footer-links a {
  margin: 0 10px;
  color: #1e5a96;
  text-decoration: none;
}
