body {
  background-color: #bfddf9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  width: 400px;
}

/* Mengatur Logo di Kiri, Teks di Kanan */
.logo-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
  gap: 15px;
}

.logo-area img {
  height: 65px; /* Sesuaikan tinggi logo */
  width: auto;
  margin-right: 15px; /* Jarak antara logo dan teks */
  flex-shrink: 0; /* Mencegah logo gepeng */
}

.logo-text {
  color: #254688;
  display: flex;
  flex-direction: column; /* Teks SIGAP dan Sub-teks tetap tersusun atas-bawah */
  justify-content: center;
  text-align: left; /* Teks rata kiri */
}

.brand-main {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}

/* Card Putih */
.card-custom {
  background: white;
  border-radius: 20px;
  border: none;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-title {
  color: #254688;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 30px;
}

/* Form Inputs */
.form-label {
  color: #254688; /* Biru tua label */
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 10px; /* Input membulat */
  border: 1px solid #ced4da;
  padding: 12px 15px;
  background-color: #f8f9fa; /* Abu-abu sangat muda */
}

.form-control:focus {
  border-color: #254688;
  box-shadow: 0 0 0 0.2rem rgba(37, 70, 136, 0.25);
}

/* Tombol Login */
.btn-custom {
  background-color: #254688; /* Biru tua tombol */
  color: white;
  border-radius: 8px;
  padding: 10px;
  font-weight: 500;
  border: none;
  margin-top: 10px;
}

.btn-custom:hover {
  background-color: #1a356e;
  color: white;
}
