/* ===== ACCOUNT BUTTON ===== */
.account-wrap{position:relative;z-index:99999}
.account-btn{
  background:#fff;
  color:#ec4899;
  border:none;
  padding:8px 14px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

/* ===== DROPDOWN BOX ===== */
.account-dropdown{
  position:absolute;
  right:0;
  top:52px;
  width:320px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  padding:18px;
  display:none;
}
.account-dropdown.show{display:block}

/* ===== FORM STYLE (MIRIP DEWAWEB) ===== */
.dw-form h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:14px;
  color:#0f172a;
}

.dw-group{margin-bottom:12px}
.dw-group label{
  font-size:12px;
  color:#334155;
  display:block;
  margin-bottom:4px;
}
.dw-group input{
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #e2e8f0;
  outline:none;
}
.dw-group input:focus{
  border-color:#ec4899;
  box-shadow:0 0 0 2px rgba(236,72,153,.15);
}

/* ROW */
.dw-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  margin-bottom:12px;
}
.dw-check{display:flex;align-items:center;gap:6px;color:#475569}
.dw-link{text-decoration:none;color:#2563eb}

/* BUTTON */
.dw-btn-login{
  width:100%;
  padding:10px;
  border:none;
  border-radius:10px;
  background:#2563eb;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.dw-btn-login:hover{opacity:.9}

.dw-btn-admin{
  display:block;
  width:100%;
  padding:10px;
  border-radius:10px;
  background:#0f172a;
  color:white;
  text-align:center;
  text-decoration:none;
  font-weight:700;
}

/* DIVIDER */
.dw-divider{
  display:flex;
  align-items:center;
  text-align:center;
  margin:14px 0;
  font-size:12px;
  color:#94a3b8;
}
.dw-divider::before,
.dw-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#e5e7eb;
}
.dw-divider span{margin:0 8px}

/* REGISTER */
.dw-register{
  text-align:center;
  font-size:12px;
  margin-top:10px;
  color:#475569;
}
.dw-register a{
  color:#2563eb;
  text-decoration:none;
  font-weight:600;
}

/* USER MENU */
.account-user b{display:block;margin-bottom:8px}
.account-user a{
  display:block;
  padding:10px;
  border-radius:10px;
  margin-top:6px;
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
}
.account-user a:hover{background:#f1f5f9}
.logout{background:#fee2e2;color:#b91c1c}
