.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;

  box-shadow: 0 1px 3px rgb(0 0 0 / 0%);
}

label {
  margin-top: 10px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 1px 3px rgb(181, 26, 0);
}


button[type="submit"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: #fff;
  cursor: pointer;
}

.error-message {
  margin-top: 10px;
  color: #f44336;
}

.success-message {
  margin-top: 10px;
  color: #4CAF50;
}
