:root{
  --red:#e30613;
  --red-dark:#b9000b;
  --dark:#171717;
  --text:#242424;
  --muted:#777;
  --line:#e7e7e7;
  --white:#fff;
  --shadow:0 28px 90px rgba(0,0,0,.16);
}
*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 82% 20%,rgba(227,6,19,.28),transparent 28%),
    linear-gradient(135deg,rgba(18,18,18,.92),rgba(18,18,18,.8)),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80') center/cover;
}
a{color:inherit;text-decoration:none}
.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px;
}
.login-card{
  width:min(100%,460px);
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.04em;
}
.logo__mark{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:13px;
  background:var(--red);
  color:#fff;
  font-size:28px;
  font-weight:900;
  transform:skew(-8deg);
}
.logo__text{font-size:21px}.logo__text b{color:var(--red)}
.content{margin-top:46px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:var(--red);
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.16em;
}
.eyebrow:before{
  content:"";
  width:34px;
  height:3px;
  background:var(--red);
  border-radius:99px;
}
h1{
  margin:0;
  color:var(--dark);
  font-size:clamp(34px,8vw,52px);
  line-height:.98;
  letter-spacing:-.055em;
}
p{
  margin:18px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.login-form{
  display:grid;
  gap:16px;
  margin-top:34px;
}
label{display:grid;gap:8px;font-weight:800;color:#333;font-size:14px}
input{
  width:100%;
  height:52px;
  padding:0 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#f8f8f8;
  color:#222;
  font-size:16px;
  outline:none;
  transition:.18s;
}
input:focus{
  border-color:rgba(227,6,19,.58);
  background:#fff;
  box-shadow:0 0 0 4px rgba(227,6,19,.08);
}
button{
  height:54px;
  margin-top:4px;
  border:0;
  border-radius:14px;
  background:var(--red);
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(227,6,19,.28);
  transition:.18s;
}
button:hover{background:var(--red-dark);transform:translateY(-1px)}
.status{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:#777;
  font-size:13px;
}
.status__dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 6px rgba(227,6,19,.11);
  flex:none;
}
@media (max-width:520px){
  .page{padding:16px}
  .login-card{padding:26px;border-radius:22px}
  .logo__text{font-size:18px}
  .content{margin-top:36px}
}
