* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  /* Gunakan gambar latar belakang Bulukumba */
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../assets/img/login/background-bulukumba.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  width: 90%;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
}

/* Bagian Identitas Kiri */
.brand-section {
  flex: 1;
  color: white;
  padding-right: 50px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

.brand-text h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-text h2 {
  font-size: 1.2rem;
  color: #00aaff;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Grid Diamond Ikon */
.tax-grid {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 15px;
  margin-top: 20px;
}

.diamond {
  width: 70px;
  height: 70px;
  background: white;
  transform: rotate(45deg);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.diamond img {
  transform: rotate(-45deg);
  width: 70%;
}

/* Warna border diamond sesuai lampiran */
.yellow {
  border-color: #ffd700;
}
.pink {
  border-color: #e91e63;
}
.green {
  border-color: #4caf50;
}
.red {
  border-color: #f44336;
}
.black {
  border-color: #333;
}
.blue {
  border-color: #2196f3;
}

/* Box Login Kanan */
.login-section {
  flex: 0 0 400px;
}

.login-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.login-box h3 {
  margin-bottom: 25px;
  color: #444;
  letter-spacing: 1px;
}

.input-group {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.input-group input {
  width: 50%;
  padding: 12px;
  border: none;
  outline: none;
}

.input-group input:first-child {
  border-right: 1px solid #ddd;
}

.btn-signin {
  width: 100%;
  padding: 12px;
  background-color: #00a65a;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-signin:hover {
  background-color: #008d4c;
}

.footer-links {
  margin-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: #00a65a;
  text-decoration: none;
}

.btn-dashboard {
  background: #5cb85c;
  color: white !important;
  padding: 5px 10px;
  border-radius: 4px;
}
