.hero{
  background:linear-gradient(115deg,#12295f,#1c3f94 55%,#a8241a);
  color:#fff;
  border-radius:18px;
  padding:38px 34px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  margin-bottom:22px;
}
.hero:after{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.07);
}
.hero h1{font-size:34px;margin-bottom:10px}
.hero p{max-width:640px;color:#dbe4ff;font-size:16px}
.hero .row{margin-top:18px;position:relative;z-index:2}

.stat{background:#fff;border:1px solid var(--line);border-radius:14px;padding:16px 18px;box-shadow:var(--shadow)}
.stat .num{font-size:28px;font-weight:700;color:var(--blue)}
.stat .lbl{font-size:13px;color:var(--muted)}

.room-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:.18s;
}
.room-card:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(22,32,58,.13)}
.room-card h3{margin:0;font-size:17px}
.room-cap{font-size:13px;color:var(--muted)}
.room-card .btn{align-self:flex-start;margin-top:auto}

.review{
  background:#fff;
  border:1px solid var(--line);
  border-left:4px solid var(--blue);
  border-radius:12px;
  padding:16px 18px;
  box-shadow:var(--shadow);
}
.stars{color:#f0a800;font-size:16px;letter-spacing:2px}
.stars .off{color:#d9dfeb}

.er-box{border:2px solid var(--blue);border-radius:12px;background:#fff;overflow:hidden;box-shadow:var(--shadow)}
.er-box h4{background:var(--blue);color:#fff;margin:0;padding:9px 14px;font-size:15px}
.er-box ul{list-style:none;margin:0;padding:8px 0}
.er-box li{padding:5px 14px;font-size:13px;display:flex;justify-content:space-between;gap:8px;border-bottom:1px dashed #eef2f9}
.er-box li:last-child{border-bottom:0}
.er-box li span.t{color:var(--muted);font-size:12px}

.hero .hello{
  font-size:14px;letter-spacing:.4px;text-transform:uppercase;
  color:#cfe0ff;margin-bottom:8px;position:relative;z-index:2;font-weight:600
}

.auth-wrap{display:flex;justify-content:center;padding:14px 0 34px}
.auth-card{
  width:100%;max-width:470px;background:var(--card);border:1px solid var(--line);
  border-radius:18px;box-shadow:var(--shadow);overflow:hidden
}
.auth-card-wide{max-width:640px}
.auth-head{
  background:linear-gradient(115deg,#12295f,#1c3f94 60%,#a8241a);
  color:#fff;padding:24px 28px
}
.auth-head h1{color:#fff;font-size:25px;margin:10px 0 6px}
.auth-head p{margin:0;color:#dbe4ff;font-size:14px}
.auth-body{padding:24px 28px 26px}
.auth-demo{
  margin-top:16px;background:#f4f7fd;border:1px solid var(--line);
  border-radius:12px;padding:12px 14px;font-size:13px;
  text-align:center;line-height:1.8;color:var(--muted)
}
.auth-demo b{color:var(--text)}

@media (max-width:640px){
  .auth-head,.auth-body{padding-left:18px;padding-right:18px}
}
