* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  color: #293f36;
  background: linear-gradient(135deg, #f9fafb, #e9efec);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}
main {
  max-width: 440px;
  min-height: 100svh;
  margin: auto;
  padding: calc(40px + env(safe-area-inset-top)) 30px calc(30px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}
.brand {
  font-weight: 650;
  font-size: 25px;
  letter-spacing: -1px;
}
.brand span {
  font-size: 11px;
  color: #6e8073;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 7px;
}
section {
  margin: auto 0;
  padding: 40px 0;
}
.lock {
  font-size: 60px;
  color: #688674;
  line-height: 1;
}
h1 {
  font-weight: 500;
  font-size: 39px;
  letter-spacing: -1.6px;
  margin: 15px 0;
}
p {
  font-size: 14px;
  line-height: 1.65;
  color: #627569;
  margin-bottom: 30px;
}
form {
  margin-top: 30px;
}
label {
  display: block;
  font-size: 13px;
  color: #54705e;
  margin: 18px 0;
}
input {
  display: block;
  width: 100%;
  padding: 15px 13px;
  font: inherit;
  font-size: 16px;
  color: #294333;
  background: #ffffffb0;
  border: 1px solid #ccdbce;
  border-radius: 13px;
  margin-top: 9px;
}
button {
  width: 100%;
  padding: 17px;
  border-radius: 16px;
  border: 0;
  background: #315f54;
  color: white;
  font: inherit;
  font-size: 15px;
  font-weight: 550;
  cursor: pointer;
  min-height: 50px;
}
button:disabled {
  opacity: 0.6;
}
input:focus,
button:focus-visible {
  outline: 3px solid #5b8b6b;
  outline-offset: 3px;
}
#error {
  color: #a3443d;
  font-size: 13px;
  margin: 12px 0;
}
small {
  color: #738276;
  font-size: 11px;
  line-height: 1.5;
}
