@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap");
:root {
  font-family: "DM Sans", sans-serif;
  color: #253139;
  background: #1d292e;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0, #3a4e52 0, transparent 36%),
    linear-gradient(125deg, #172126, #283b3e);
}
.login-card {
  width: min(100%, 490px);
  background: #fff;
  padding: 38px 46px 34px;
  border: 1px solid #dce4e5;
  border-radius: 11px;
  box-shadow: 0 25px 80px #050b0d73;
}
.mark {
  display: flex;
  gap: 4px;
  align-items: end;
  height: 31px;
  width: max-content;
  margin: 0 auto 25px;
}
.mark span {
  display: block;
  width: 7px;
  background: #ed5718;
}
.mark span:nth-child(1) {
  height: 17px;
}
.mark span:nth-child(2) {
  height: 31px;
}
.mark span:nth-child(3) {
  height: 23px;
}
.eyebrow {
  margin: 0;
  text-align: center;
  color: #78858a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
}
h1 {
  font-family: Manrope, sans-serif;
  font-size: 32px;
  letter-spacing: -1.3px;
  line-height: 1.1;
  margin: 10px 0 12px;
  text-align: center;
}
.intro {
  color: #617078;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 340px;
  text-align: center;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 9px;
}
input {
  width: 100%;
  border: 1px solid #cfd9dc;
  border-radius: 5px;
  min-height: 47px;
  padding: 11px 12px;
  font: inherit;
}
input:focus {
  outline: 3px solid #ed57184d;
  border-color: #ed5718;
}
button {
  border: 0;
  border-radius: 5px;
  width: 100%;
  margin-top: 17px;
  padding: 14px 16px;
  background: #ed5718;
  color: #fff;
  font:
    500 15px "DM Sans",
    sans-serif;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
button:hover {
  background: #d94c15;
}
.error {
  color: #b22610;
  font-size: 13px;
  margin: 12px 0 0;
}
.logo {
  display: flex;
  align-items: center;
}
.notice {
  margin-top: 25px;
  padding: 14px 15px;
  border: 1px solid #ead7c8;
  border-left: 3px solid #ed5718;
  border-radius: 5px;
  background: #fff8f3;
}
.notice strong {
  color: #714326;
  font-size: 12px;
}
.notice p,
.legal {
  margin: 7px 0 0;
  color: #78858a;
  font-size: 11px;
  line-height: 1.55;
}
.legal {
  margin-top: 17px;
}
.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #e5eaec;
  color: #8a969c;
  font-size: 10px;
}
.powered-by img {
  width: 18px;
  height: 18px;
}
.powered-by b {
  color: #5e4f94;
  font-size: 12px;
  letter-spacing: -0.2px;
}
@media (max-width: 520px) {
  body { padding: 16px; }
  .login-card { padding: 32px 25px 27px; }
}
