* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000000;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header / Logo */
header {
  width: 100%;
  padding: 20px;
  text-align: center;
  background: rgb(0, 0, 0);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header img {
  height: 140px;
  object-fit: contain;
}

/* Hero section */
.hero {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-top: 30px;
}

.hero img {
  width: 25%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

/* Styling untuk konten teks baru (BARU) */
.content {
  text-align: center;
  color: white;
  padding: 0 20px;
  margin-top: 25px;
}

.content h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 16px;
  font-weight: normal;
  max-width: 600px;
  margin: 0 auto;
}

/* Tombol login & daftar */
.buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.btn {
  width: 200px;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  text-align: center;
}

.btn-login {
  background: #3498db;
  color: white;
}

.btn-login:hover {
  background: #2980b9;
}

.btn-daftar {
  background: #2ecc71;
  color: white;
}

.btn-daftar:hover {
  background: #27ae60;
}

/* Footer */
footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  background: #000000;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #000000;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero img {
    width: 60%;
  }

  .btn {
    width: 70%;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  header img {
    height: 100px;
  }

  .hero img {
    width: 80%;
  }

  .btn {
    width: 80%;
    font-size: 14px;
  }
}