/* PPM Login UI styling
   Goal: replicate the clean, centered login card shown in the original ASK-style screenshot.
   Hooks: .ask-auth-wrapper, #ask-login-section, #ask-register-section.
*/

.ask-auth-wrapper{
  max-width:420px;
  margin:2rem auto;
  padding:2rem;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.ask-title{
  font-weight:700;
  letter-spacing:.02em;
  margin:0 0 1rem;
}

#ask-login-section label{
  display:block;
  font-weight:400;
  margin-bottom:.35rem;
  color:#666;
}

#ask-login-section .form-control{
  width:93%;
  border:1px solid #cbd5e1;
  border-radius:6px;
  padding:.6rem .75rem;
  font-size:1rem;
  line-height:1.2;
}

#ask-login-section .form-control:focus{
  outline:none;
  border-color:#3b82f6;
  box-shadow:0 0 0 .2rem rgba(59,130,246,.15);
}

#ask-login-section .form-check{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin:.75rem 0 1rem;
}

#ask-login-section .form-check-input{
  width:16px;
  height:16px;
}

#ask-login-section .btn.btn-primary{
  width:100%;
  background:#0d6efd;
  border:1px solid #0d6efd;
  color:#fff;
  padding:.7rem 1rem;
  border-radius:6px;
  font-weight:400;
  cursor:pointer;
  text-transform:uppercase;
  font-size:1.3rem;

  margin:10px 0px;
}

#ask-login-section .btn.btn-primary:hover{
  filter:brightness(.98);
}

.ask-auth-links{
  margin-top:1rem;
  text-align:center;
  font-size:.95rem;

}

.ask-auth-divider{
  margin:0 .5rem;
  opacity:.6;
}

.ask-auth-links a{
  color:#0d6efd;
  text-decoration:none;
}

.ask-auth-links a:hover{
  text-decoration:underline;
}
