.auth-shell{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
}

.auth-card{
  width: min(520px, 100%);
  padding: 28px 22px;
  color: #fff;
}

.auth-logo-wrap{
  text-align: center;
  margin-bottom: 12px;
}

.auth-logo{
  width: 170px;
  max-width: 100%;
}

.auth-title{
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #fff;
}

.auth-subtitle{
  text-align: center;
  margin: 0 0 22px;
  color: rgba(255,255,255,.80);
  font-size: 15px;
}

.auth-input{
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  box-shadow: none !important;
  padding: 13px 14px !important;
}

.auth-input::placeholder{
  color: rgba(255,255,255,.60) !important;
}

.auth-input:focus{
  box-shadow: 0 0 0 .2rem rgba(61,126,185,.18) !important;
  border-color: rgba(61,126,185,.55) !important;
}

.auth-error{
  color: #ffb8c1;
  font-size: 14px;
  margin-top: 6px;
  text-align: center;
}

.auth-check{
  text-align: right;
  color: rgba(255,255,255,.88);
}

.auth-check .form-check-input{
  float: none;
  margin-left: 0;
  margin-right: .5rem;
}

.auth-btn-primary{
  background: linear-gradient(90deg, #3D7EB9, #07A869);
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

.auth-btn-primary:hover{
  filter: brightness(1.04);
  color: #fff;
}

.auth-links{
  text-align: center;
  margin-top: 18px;
}

.auth-link,
.auth-link-inline{
  color: #d8ecff;
  text-decoration: none;
  font-weight: 700;
}

.auth-link:hover,
.auth-link-inline:hover{
  color: #fff;
  text-decoration: underline;
}

.auth-help{
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  text-align: center;
}

.auth-success{
  background: rgba(63, 226, 138, .14);
  border: 1px solid rgba(63, 226, 138, .30);
  color: #d8ffe8;
  padding: 12px 14px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
}

.auth-error-box{
  background: rgba(255, 90, 106, .14);
  border: 1px solid rgba(255, 90, 106, .30);
  color: #ffd7dc;
  padding: 12px 14px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
}

.auth-terms{
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.auth-btn-secondary{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  color: #fff;
}

.auth-btn-secondary:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
}

.auth-btn-secondary:disabled{
  opacity: .55;
  cursor: not-allowed;
}

.otp-card{
  max-width: 560px;
}

.otp-inputs{
  direction: ltr;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.otp-input{
  width: 56px !important;
  height: 64px;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 14px !important;
}

.timer-bar-container{
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
}

.timer-bar{
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3D7EB9, #07A869);
  transition: width 1s linear;
}