:root{
  --primary:#3F51B5;
  --secondary:#EC407A;
  --accent:#FBC02D;
}

.btn-primary{background:var(--primary);border:0}

.avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  border:4px solid var(--accent);
  object-fit:cover;
}
body {
  background-color: #f8f9fa;
  background-image: url('/assets/img/logo-dscm.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 280px;
  background-attachment: fixed;
}

/* efek transparan */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.92);
  z-index: -1;
}
