html {
  font-family: "Sofia Pro", -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
}

main {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  gap: 15px;
}

label {
  font-size: 32px;
}

input {
  padding: 8px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: none;
  border: 2px solid gray;
  border-style:solid;
  appearance: none;
  outline: none;
}

a {
  transition: 200ms all ease;
  color: #2b2b2b;
  box-shadow: 0 1px 1px #00000040, 0 1px 3px #00000014;
  width: 103px;
  height: 40px;
  background: #e1af63;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}

a:hover {
  box-shadow: 0 4px 4px #00000040, 0 1px 3px #00000014;
}