* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f7f8fb;
  color: #283347;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.auth-card {
  width: 100%;
  max-width: 390px;
  background: #fff;
  padding: 38px;
  border: 1px solid #e0e5ed;
  border-radius: 12px;
}
.auth-brand {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 34px;
}
.auth-brand span {
  color: #4163db;
}
h1 {
  font-size: 23px;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}
p {
  font-size: 13px;
  color: #7b879c;
  line-height: 1.7;
  margin-bottom: 26px;
}
.auth-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #dce2ec;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  color: #35435d;
  font-size: 13px;
  font-weight: 500;
}
.auth-button:hover {
  background: #f5f7fb;
}
.auth-button:focus-visible {
  outline: 2px solid #4163db;
  outline-offset: 4px;
}
.google-mark {
  font-size: 17px;
  font-weight: 700;
  color: #4285f4;
}
