* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.image-side {
  flex: 0 0 65%;
  position: relative;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner {
  max-width: 650px;
  text-align: center;
  color: #000000;
}

.logo, .partner-logo, .partner-logo-tutwuri, .partner-logo-uks {
  width: 100px;
  height: auto;
  border-radius: 0;            /* hilangkan sudut bulat kalau tidak perlu */
  box-shadow: none;           /* hilangkan shadow putih/abu-abu */
  background: transparent;    /* pastikan tidak ada background */
}

.partner-logo-tutwuri {
  width: 105px;               /* ukuran logo Tut Wuri */
  height: auto;
  margin-bottom: 2px;               /* sesuaikan tinggi otomatis */
  margin-top: 10px;          /* jarak atas untuk logo Tut Wuri */
}

.partner-logo-uks {
  width: 108px;               /* ukuran logo Tut Wuri */
  height: auto;
  margin-bottom: 2px;               /* sesuaikan tinggi otomatis */
  margin-top: 10px;          /* jarak atas untuk logo Tut Wuri */
}

/* Judul */
h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
  text-shadow: 0 0 3px #3498db, 0 0 6px #2980b9;
}

.subtitle {
  font-size: 1.3rem;
  color: #3fa03f;
  margin-top: 10px;
  margin-bottom: 20px;
}

.divider {
  border: none;
  height: 2px;
  width: 50px;
  background: #4caf50;
  margin: 10px auto 15px auto;
}

.description {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.features {
  list-style: none;
  text-align: left;
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 20px;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-large {
  background: #4caf50;
  padding: 12px;
  font-size: 0.95rem;
}

.btn-large:hover {
  background: #388e3c;
}

.btn-row {
  display: flex;
  gap: 10px;
}

.btn-small {
  flex: 1;
  background: #2196f3;
  padding: 10px;
  font-size: 0.85rem;
}
/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: 'Segoe UI', Tahoma, sans-serif; }

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Bagian kiri (login card) */
.content {
  flex: 0 0 35%;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Efek gradasi transparan di sisi kanan konten agar nyatu ke background kanan */
.content::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: -60px;
  width: 60px;
  background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0));
  z-index: 1;
}

/* Card glass */
.card {
  background: rgba(255,255,255,0.18);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 25px;
  max-width: 350px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

/* Glassmorphism effect */
.glass-card {
  background: rgba(32, 216, 15, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Tombol */
.button-group { display: flex; flex-direction: column; gap: 15px; }
.btn {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-full {
  background: #00b894;
  box-shadow: 0 5px 15px rgba(0,184,148,0.4);
}
.btn-full:hover { background: #00997a; }
.btn-split { display: flex; gap: 10px; }
.btn-half {
  flex: 1;
  background: #0984e3;
  box-shadow: 0 5px 15px rgba(9,132,227,0.4);
}
.btn-half:hover { background: #0862a5; }

/* Background kanan */
.background {
  flex: 0 0 65%;
  background: url('images/background1.jpg') no-repeat center center / cover;
}

/* Responsive */
@media (max-width: 768px) {
  .container { flex-direction: column; }
  .content, .background { flex: none; width: 100%; border-radius: 0; }
  .content::before { display: none; }
}

.btn-small:hover {
  background: #1976d2;
}

/* Responsif */
@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
  }

  .content, .image-side {
    flex: 1 0 auto;
    width: 100%;
  }

  .image-side {
    height: 200px;
  }

  .inner {
    max-width: 90%;
  }
}