/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Prompt', sans-serif;
  background-color: #0f0f0f;
  color: #f0f0f0;
  padding: 20px;
}

/* Wraps */
#bodywrap {
  max-width: 500px;
  margin: auto;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  padding: 20px;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 20px;
}
.logo img {
  max-width: 200px;
  height: auto;
}

/* News / Marquee */
#news {
  background: #222;
  color: #ffeb3b;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

/* Main content */
#main {
  text-align: center;
}

/* Login Table */
#loginForm {
  width: 100%;
}
#loginForm td {
  padding: 10px 0;
}

/* Button Style */
.themeBtn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(45deg, #00bcd4, #2196f3);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.themeBtn:hover {
  background: linear-gradient(45deg, #2196f3, #00bcd4);
  transform: scale(1.03);
}

/* Second Button Style */
.themeBtn-daftar {
  background: linear-gradient(45deg, #ff9800, #f44336);
}
.themeBtn-daftar:hover {
  background: linear-gradient(45deg, #f44336, #ff9800);
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›"; /* atau gunakan "/" jika ingin lebih umum */
  color: #666;
  margin: 0 10px;
}

.breadcrumb a {
  text-decoration: none;
  color: #00ffc3;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.breadcrumb a:hover {
  color: #f9ca24;
}

.breadcrumb span {
  color: #fff;
  font-weight: bold;
}

#bodywrap {
  animation: bounceDrop 0.9s ease-out forwards;
}

@keyframes bounceDrop {
  0% {
    transform: translateY(-100px);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-20px);
  }
  80% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
