/* === NAVBAR HEADER === */
.navbar .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar .header-left img {
  width: 60px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar .header-titles h1 {
  font-size: 18px;
  font-weight: 500;
  margin-left: -170px;
}

.navbar .header-titles h2 {
  font-size: 15px;
  font-weight: 500;
  margin-left: -170px;
}

/* === MAIN HERO BOX === */
.portal-container {
  max-width: 700px;
  margin: 120px auto;
  padding: 0 20px;
}

.portal-card {
  background-color: #f1f9ff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 40px 30px;
  border-top: 6px solid var(--primary-red);
}

.portal-logo {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
}

.portal-card h2 {
  color: var(--black);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portal-card p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 35px;
}

/* === TOMBOL MASUK HALAMAN LOGIN === */
.btn-login-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-blue));
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 16px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(91, 155, 213, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 35px;
}

.btn-login-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(91, 155, 213, 0.6);
  filter: brightness(1.05);
}

.btn-login-trigger i {
  font-size: 18px;
}

/* === INFO ROLES / PETUNJUK AKSES === */
.roles-info {
  border-top: 1px dashed #e0e0e0;
  padding-top: 25px;
  text-align: left;
}

.roles-info h3 {
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-weight: 700;
}

.role-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-gray);
}

.role-item i {
  color: var(--accent-orange);
  margin-top: 4px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .portal-container {
    margin: 120px auto;
  }
  .portal-card {
    padding: 30px 20px;
  }
  .navbar .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .navbar .header-left img {
    width: 50px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -280px;
    font-size: 16px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -280px;
    font-size: 14px;
    font-weight: 400;
  }
  .page-header {
    height: 270px;
  }
  .page-header h2 {
    font-size: 26px;
    margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .portal-container {
    margin: 120px auto;
  }
  .portal-card {
    padding: 30px 20px;
  }
  .navbar .header-left {
    display: flex;
    align-items: center;
  }
  .navbar .header-left img {
    margin-left: -35px;
    width: 35px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -100px;
    font-size: 10px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -100px;
    font-size: 9px;
    font-weight: 400;
  }
  .page-header {
    height: 200px;
  }
  .page-header h2 {
    font-size: 24px;
    margin: -5px 0 15px 0;
  }
  .page-header p {
    font-size: 16px;
    margin-top: -30px;
  }
  .bar {
    margin-right: -10px;
  }
}
