body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.netapp-form {
  width: 100%;
  max-width: 500px;
  background: #fff;
  margin-top: 20px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.netapp-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.netapp-form input[type="email"],
.netapp-form input[type="text"] {
  font-size: 16px;
  width: 95%;
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.error-message {
  display: none;
  color: red;
  margin-bottom: 10px;
}

.netapp-form p {
  color: #555;
  margin-bottom: 20px;
}

.netapp-form a {
  color: #0073e6;
  text-decoration: none;
}

.netapp-form a:hover {
  text-decoration: underline;
}

.netapp-form button {
  background: #0073e6;
  color: #fff;
  padding: 10px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.netapp-form button:hover {
  background: #005bb5;
}

#logo {
  max-width: 200px;
  height: auto;
}