body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 16px;
  background: #f7f7f7;
}

.auth-container {
  max-width: 480px;
  margin: auto;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
}

h2 {
  margin-top: 0;
  color: hsl(320, 100%, 52%);
  text-align: center;
}


input, textarea, select {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 70px;
}

.login-btn,.signup-btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;

  /* Smooth out the transition */
  transition: transform 0.1s ease-in-out;
}

.login-btn{
  background: #007bff;
}

.signup-btn{
  background: #ff0add;
}

.login-btn:active, .signup-btn:active{
  transform: scale(0.95);
}