body.checloli-auth-page {
  background: linear-gradient(120deg, #eef2f7 0%, #d6e0f5 100%);
  min-height: 100vh;
  color: #253858;
  font-family: 'Segoe UI', 'Yu Gothic', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.checloli-auth-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(60, 80, 150, 0.15), 0 1.5px 6px 0 rgba(60, 80, 150, 0.08);
  padding: 40px 38px 32px;
  min-width: 340px;
  max-width: 90vw;
}

.checloli-auth-box h2 {
  margin-bottom: 22px;
  color: #356aff;
  font-weight: 700;
  font-size: 1.45em;
  letter-spacing: 0.03em;
}

.checloli-auth-box label {
  display: block;
  margin: 18px 0 10px;
  font-size: 1em;
  font-weight: 500;
  text-align: left;
}

.checloli-auth-box input[type="text"],
.checloli-auth-box input[type="password"] {
  display: block;
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #c6d3ee;
  border-radius: 7px;
  background: #f5f8ff;
  font-size: 1em;
  margin-top: 4px;
  box-sizing: border-box;
  outline: none;
  transition: border 0.2s;
}

.checloli-auth-box input[type="text"]:focus,
.checloli-auth-box input[type="password"]:focus {
  border: 1.5px solid #356aff;
  background: #eef4ff;
}

.checloli-auth-box button[type="submit"] {
  display: inline-block;
  background: linear-gradient(90deg, #3578ff 0%, #3ce2ff 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 34px;
  font-size: 1.07em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(53, 122, 255, 0.13);
  margin-top: 20px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.18s, box-shadow 0.18s;
}

.checloli-auth-box button[type="submit"]:hover,
.checloli-auth-box button[type="submit"]:focus {
  background: linear-gradient(90deg, #2560cc 0%, #29b4d6 100%);
  box-shadow: 0 4px 20px rgba(53, 122, 255, 0.19);
}

.checloli-err {
  color: #ff3750;
  margin-bottom: 20px;
  font-weight: 600;
  background: #ffe5ea;
  border-radius: 6px;
  padding: 8px 0;
}

.checloli-info {
  font-size: 0.98em;
  color: #5b6e89;
  margin-bottom: 12px;
  margin-top: 5px;
  text-align: left;
  line-height: 1.7;
}

.checloli-highlight {
  color: #ff8b2d;
}

@media (max-width: 480px) {
  .checloli-auth-box {
    padding: 24px 6vw;
    min-width: unset;
  }
}
