/* FULL PAGE CENTER */
.page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../asset/homebg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: black;
  padding: 20px;
}

.page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass {
  width: 100%;
  max-width: 420px;
  padding: 25px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: rgb(36, 36, 36);
  font-family: "Poppins";
}

.glass h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 25px;
}

.glass h3 {
  margin-top: 15px;
  font-size: 23px;
  text-align: center;
  margin-bottom: 10px;
}

/* SELECT */
select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-top: 10px;
  outline: none;
  font-size: 14px;
  font-family: "Poppins";
  font-weight: lighter;
}

.kab-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 15px;
  margin-top: 15px;
  color: rgb(29, 29, 29);
  font-family: "Poppins";
  font-weight: lighter;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.btn-chat,
.btn-ig-pro,
.btn-ig-kab {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Poppins";
  font-weight: lighter;
  font-size: 13px;
  color: white;
  transition: 0.2s;
}

/* WA */
.btn-chat {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* IG PROV */
.btn-ig-pro {
  background: linear-gradient(135deg, #833ab4, #5851db);
}

/* IG KAB */
.btn-ig-kab {
  background: linear-gradient(135deg, #f09433, #e1306c);
}

/* HOVER */
.btn-chat:hover,
.btn-ig-pro:hover,
.btn-ig-kab:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.glass {
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .glass {
    margin: 20px;
    padding: 20px;
  }
}

.btn-group a i {
  margin-right: 6px;
  font-size: 15px;
}

.btn-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
