
/* Quick-Login UI (v1.0.11) */
.wfcm2-ql-wrap{  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px 12px;
  background:#111;
  min-height: 100vh;
}


.wfcm2-ql-card{
  width: min(720px, 96vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  padding: 18px 18px 16px;
  box-sizing:border-box;
}

.wfcm2-ql-head{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
margin-bottom: 12px;}
.wfcm2-ql-title{font-size: 20px; font-weight: 700; margin:0;}
.wfcm2-ql-sub{opacity:.8; margin-top:4px; font-size: 14px;}

.wfcm2-ql-status{padding: 14px 8px; opacity:.8}

.wfcm2-ql-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.wfcm2-ql-item{
  background: #f4f6f8;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 10px 10px;
  cursor: pointer;
  text-align:center;
}

.wfcm2-ql-item-avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
}
.wfcm2-ql-item-name{margin-top: 8px; font-weight: 700; font-size: 14px; color:#333;}

.wfcm2-ql-form{margin-top: 6px;}
.wfcm2-ql-user{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 10px 0 12px;
}
.wfcm2-ql-avatar{
  width: 64px;
  height: 64px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  object-fit:cover;
}
.wfcm2-ql-username{font-weight: 800; font-size: 16px;}
.wfcm2-ql-hint{opacity:.75; font-size: 12px; margin-top:2px;}

.wfcm2-ql-pass{
  width: 100%;
  box-sizing:border-box;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  font-size: 16px;
}

.wfcm2-ql-error{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,0,0,.08);
  border: 1px solid rgba(255,0,0,.18);
}

.wfcm2-ql-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  justify-content:flex-end;
}



/* Hover color changes (Quick-Login tiles) */
.wfcm2-ql-item{color:#333}
.wfcm2-ql-item:hover,.wfcm2-ql-item:focus{background:#0f7ea1;border-color:#0f7ea1}
.wfcm2-ql-item:hover .wfcm2-ql-item-name,.wfcm2-ql-item:focus .wfcm2-ql-item-name{color:#fff}
/* No hover zoom/transform effects */
.wfcm2-ql-item{transform:none;transition:none}
.wfcm2-ql-item:hover,.wfcm2-ql-item:active{transform:none;box-shadow:none}

.wfcm2-ql-logo{margin: 0 0 10px;}
.wfcm2-ql-logo img{width:110px;height:auto;display:block;}
