/* Tambahan styling untuk menyerupai Google Meet dengan background meeting-themed */
body {
  font-family: 'Roboto', Arial, sans-serif; /* Menggunakan Roboto sebagai font utama, mirip Google Sans */
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%); /* Gradien biru-to-abu yang menyerupai langit/ruang meeting */
  background-attachment: fixed; /* Agar background tetap saat scroll */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row; /* Horizontal untuk desktop */
  min-height: 100vh;
  font-weight: 400; /* Berat font default */
  position: relative;
}
/* Pola titik-titik transparan untuk efek koneksi/jaringan meeting */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(26, 115, 232, 0.1) 1px, transparent 1px);
  background-size: 20px 20px; /* Ukuran pola titik-titik */
  opacity: 0.3; /* Transparan agar tidak mengganggu */
  z-index: -1; /* Di belakang konten */
}
/* Responsivitas: di mobile, kembali vertikal */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  .intro {
    width: 100% !important;
    height: 200px !important; /* Tinggi tetap di mobile */
  }
}
.intro {
  width: 50%;
  height: 60vh; /* Tinggi 60% dari viewport */
  background: url("/bg-meeting.png") no-repeat;
  background-size: cover; /* Agar gambar menutupi area */
  background-position: right center; /* Rata kanan horizontal, center vertikal */
  position: relative;
  z-index: 1;
  top:20vh;
  right:-10vw;
}
.main-content {
  flex: 1; /* Mengambil sisa ruang */
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  position: relative !important;
  z-index: 1; /* Di atas background */
}
.title {
  font-size: 36px;
  font-weight: 500; /* Sedikit lebih tebal untuk judul */
  color: #202124 !important;
  text-align: center;
  margin-bottom: 32px;
}
.join-section {
  background-color: rgba(255, 255, 255, 0.95); /* Semi-transparan untuk efek overlay */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px); /* Efek blur untuk tampilan modern */
}
.join-section h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #202124;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #5f6368;
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  box-sizing: border-box;
}
.btn {
  background-color: #1a73e8;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500; /* Sedikit lebih tebal untuk tombol */
  cursor: pointer;
  width: 100%;
  margin-top: 16px;
}
.btn:hover {
  background-color: #1557b0;
}
.error-message {
  color: #ea4335;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}
.public-groups {
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin-top: 32px;
}
.public-groups h2 {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 16px;
}
.public-groups table {
  width: 50%;
  border-collapse: collapse;
  margin: 0 auto;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparan */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.public-groups th, .public-groups td {
  padding: 8px;
  text-align: center;
  border-bottom: 1px solid #dadce0;
  font-weight: 400;
}
footer {
  text-align: center;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #dadce0;
  font-weight: 400;
  position: relative;
  z-index: 1;
  width: 100%; /* Agar footer penuh di bawah */
}