* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(32, 96, 90, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(183, 90, 35, 0.14), transparent 42%),
    #f4f1ea;
  color: #1e201c;
  font-family: "IBM Plex Sans", Aptos, "Segoe UI", sans-serif;
}

main {
  width: min(420px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid #d8d0c2;
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 24px 80px rgba(51, 44, 33, 0.16);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.login-brand img {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid #d8d0c2;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(51, 44, 33, 0.08);
  object-fit: cover;
}

.login-brand h1 {
  margin: 0 0 6px;
}

.login-brand p {
  margin: 0;
}

h1 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

p {
  margin: 0 0 24px;
  color: #686257;
  line-height: 1.45;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #cfc6b8;
  border-radius: 6px;
  background: #fffdf8;
  color: #1e201c;
  font: inherit;
}

button {
  width: 100%;
  height: 44px;
  margin-top: 16px;
  border: 0;
  border-radius: 6px;
  background: #245f58;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

small {
  display: block;
  margin-top: 16px;
  color: #756e62;
}
