/* ===== Login Page ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #101828; }

.auth-page{
  background: #e9f6f3;
}

.auth{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card{
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(82,63,105,.10);
}

.auth-brand{
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.auth-logo{
  height: 38px;
  width: auto;
  display: block;
}

.auth-title{
  text-align: center;
  font-size: 18px;
  margin: 10px 0 18px;
  font-weight: 700;
}

.auth-alert{
  background: rgba(255, 77, 79, 0.10);
  border: 1px solid rgba(255, 77, 79, 0.25);
  color: #b42318;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}

.auth-form{ display: grid; gap: 10px; }

.auth-label{
  font-size: 13px;
  color: #667085;
  font-weight: 600;
  margin-top: 4px;
}

.auth-input{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
  padding: 0 14px;
  outline: none;
  background: #fff;
}

.auth-input:focus{
  border-color: rgba(122,224,212,.8);
  box-shadow: 0 0 0 4px rgba(122,224,212,.25);
}

.auth-password{
  position: relative;
  display: flex;
  align-items: center;
}

.auth-eye{
  position: absolute;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  height: 34px;
  width: 38px;
  border-radius: 10px;
}

.auth-eye:hover{ background: rgba(15,23,42,.06); }

.auth-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.auth-check{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #667085;
}

.auth-link{
  font-size: 13px;
  color: #0ea5a5;
  text-decoration: none;
  font-weight: 600;
}

.auth-link:hover{ text-decoration: underline; }

.auth-btn{
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #7ae0d4;
  color: #0b3b34;
  font-weight: 800;
  cursor: pointer;
  margin-top: 6px;
}

.auth-btn:hover{ opacity: .95; }

.auth-foot{
  text-align: center;
  font-size: 13px;
  color: #667085;
  margin-top: 8px;
}
