/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Prompt', sans-serif;
  color: #222;
  line-height: 1.6;
  font-size: 16px;

  /* Animated gradient background */
  background: linear-gradient(-45deg, #1e3c72, #2a5298, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: bgMove 20s ease infinite;
}

/* Gradient keyframes */
@keyframes bgMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#bodywrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Header */
#headwrap {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 250px;
  height: auto;
}

/* News / marquee */
#news {
  margin-top: 10px;
  background: #222;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  overflow: hidden;
}

/* Tombol login */
.themeBtn {
  display: inline-block;
  background: linear-gradient(135deg, #0077ff, #00c2ff);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  margin: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.themeBtn::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #00f2ff, #007bff, #00f2ff);
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.themeBtn:hover::before {
  opacity: 1;
}

.themeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.themeBtn-daftar {
  background: linear-gradient(135deg, #ff6a00, #ff9100);
}

/* Table form */
#loginForm {
  border-collapse: collapse;
}

#loginForm td {
  text-align: center;
}

/* Responsif */
@media (max-width: 480px) {
  .logo img {
    max-width: 200px;
  }

  .themeBtn {
    width: 100%;
    padding: 14px 0;
  }
}
