* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', sans-serif; }
body, html { height: 100%; overflow: hidden; background-color: #f0f2f5; }
.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url('../images/background.jpg'); /* Gambar gedung jadi background utama */
    background-size: cover;
    background-position: center;
}
.left-panel {
    flex: 1.2;
}
.right-panel {
    flex: 1;
    background: transparent; /* Hapus gradasi abu-abu agar tembus pandang */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-y: auto;
}
.login-card {
    background: rgba(255, 255, 255, 0.85); /* Mengubah putih polos menjadi transparan 85% */
    backdrop-filter: blur(10px);           /* Memberikan efek blur kaca buram modern di belakang kartu */
    -webkit-backdrop-filter: blur(10px);   /* Dukungan untuk browser Safari/iOS */
    width: 55%;
    max-width: 500px;
    margin: auto;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}
.logo-container .logo { height: 70px; margin-bottom: 10px; }
.logo-container h1 { font-size: 26px; color: #0b438b; font-weight: 800; letter-spacing: 1px; margin-bottom: 2px; }
.logo-container h2 { font-size: 15px; color: #0b438b; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 5px; }
.logo-container .subtitle { font-size: 13px; color: #555; font-weight: 600; }
.wifi-icon-center { font-size: 24px; color: #1a73e8; margin: 15px 0; }
.welcome-text { font-size: 12.5px; color: #444; line-height: 1.6; margin-bottom: 25px; padding: 0 10px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
.feature-item { display: flex; flex-direction: column; align-items: center; }
.feature-item .icon-box { width: 45px; height: 45px; border-radius: 50%; background-color: #e8f0fe; color: #1a73e8; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 8px; }
.feature-item p { font-size: 9.5px; color: #333; font-weight: 600; line-height: 1.2; }
.btn-connect { width: 100%; background-color: #0b438b; color: white; border: none; padding: 14px; font-size: 15px; font-weight: 700; border-radius: 8px; cursor: pointer; box-shadow: 0 4px 12px rgba(11, 67, 139, 0.3); transition: background-color 0.2s; }
.btn-connect i { margin-right: 8px; }
.btn-connect:hover { background-color: #08336d; }
.terms-text { font-size: 10px; color: #666; margin-top: 15px; line-height: 1.4; }
.footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between; /* Memisahkan kiri dan kanan secara otomatis */
    align-items: center;
    background: transparent !important; /* Memaksa menghilangkan kotak latar belakang */
    box-shadow: none !important;        /* Menghilangkan bayangan kotak jika ada */
    z-index: 10;
    box-sizing: border-box;
}

.footer-bar div, 
.footer-bar span, 
.footer-bar a {
    color: #ffffff !important; /* Memastikan semua teks di footer berwarna putih */
    font-size: 13px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8); /* Bayangan teks agar terbaca jelas */
    text-decoration: none;
}
@media (max-width: 900px) {
    .left-panel { display: none; }
    .right-panel { flex: 1; width: 100%; background: #0b438b; padding-top: 30px; }
    .login-card { width: 90%; }
}