:root {
  --primary: #003399;
  --hint: #f10b13;
}

* {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* Header and Navbar Start */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #d9d9d9;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  font-size: 24px;
  color: var(--primary);
}

/* Navbar menu */
.navbar-nav,
.dropdown-menu {
  list-style: none;
  display: flex;
}

.navbar-nav li,
.dropdown-menu li {
  position: relative;
}

.navbar-nav a,
.navbar-nav .dropdown-toggle {
  color: var(--primary);
  padding: 14px 20px;
  display: block;
  transition: color 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  font-size: inherit;
}

.navbar-nav a:hover,
.navbar-nav .dropdown-toggle:hover {
  color: var(--hint);
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  z-index: 1000;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: var(--primary);
  transition: color 0.2s;
}

.dropdown-menu a:hover {
  color: var(--hint);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--hint);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.dropdown-menu a:hover::after {
  transform: scaleX(1);
}

/* Footer */
.footer {
  background-color: #333; /* Warna latar belakang footer */
  color: #fff; /* Warna teks */
  padding: 20px 0; /* Ruang di atas dan bawah */
  display: flex; /* Menambahkan display flex untuk footer */
  flex-direction: column; /* Mengatur arah flex menjadi kolom */
  justify-content: center; /* Menengahkan konten secara vertikal */
}

.footer-upper {
  display: flex;
  justify-content: space-around; /* Ruang yang merata antara item */
  flex-wrap: wrap; /* Membuat responsif */
  padding: 20px 50px; /* Ruang dalam untuk bagian atas footer */
}

.footer-section {
  flex: 1; /* Membagi ruang sama rata */
  padding: 20px 20px; /* Ruang di sisi kiri dan kanan */
  min-width: 200px; /* Lebar minimum untuk setiap section */
}

.footer-section h3 {
  margin-bottom: 10px; /* Spasi di bawah judul */
  color: #fff; /* Warna judul */
}

.footer-section ul {
  list-style: none; /* Menghapus titik di samping elemen list */
  padding: 0; /* Menghapus padding default */
}

.footer-section ul li {
  margin-bottom: 10px; /* Spasi di bawah setiap item */
}

.footer-section ul li a {
  text-decoration: none; /* Menghapus garis bawah pada tautan */
  color: #fff; /* Warna tautan */
  transition: color 0.3s; /* Animasi transisi warna */
}

.footer-section ul li a:hover {
  text-decoration: underline; /* Garis bawah saat hover */
}

.footer-bottom {
  display: flex; /* Menjadikan bagian bawah sebagai flex container */
  flex-direction: column; /* Mengatur arah flex menjadi kolom */
  align-items: center; /* Menengahkan item secara horizontal */
  justify-content: center; /* Menengahkan item secara vertikal */
  border-top: 1px solid #555; /* Garis pemisah atas */
  padding: 10px 0; /* Ruang atas dan bawah */
}

.footer-bottom .social-icons {
  display: flex; /* Menjadikan ikon sosial sebagai flex container */
  gap: 10px; /* Jarak antar ikon */
  margin-bottom: 10px; /* Spasi di bawah ikon sosial */
  border: 1px #d9d9d9;
}

.footer-bottom .social-icons a {
  display: flex; /* Menjadikan tautan sebagai flex container */
  color: #d9d9d9; /* Warna tautan sosial */
  font-size: 1.25rem; /* Ukuran font untuk ikon */
  width: 2rem; /* Lebar ikon */
  height: 2rem; /* Tinggi ikon */
  align-items: center; /* Menengahkan konten secara vertikal */
  justify-content: center; /* Menengahkan konten secara horizontal */
  transition: color 0.3s; /* Animasi transisi warna */
  border: 1px #d9d9d9;
}

.footer-bottom .social-icons a:hover {
  border-bottom: 1px solid white; /* Garis bawah saat hover */
  color: white; /* Warna saat hover */
}

.footer-bottom p {
  display: flex; /* Menjadikan paragraf sebagai flex container */
  margin: 0; /* Menghapus margin default */
  text-align: center; /* Memastikan teks terpusat */
  justify-content: center; /* Menengahkan teks secara horizontal */
  width: 100%; /* Membuatnya mengambil lebar penuh */
}

.company-info img {
  width: 50px; /* Lebar gambar logo */
  height: auto; /* Menjaga proporsi gambar */
  margin-bottom: 10px; /* Spasi di bawah gambar */
}

/* Hero Section Start */
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  background-color: #fff;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
  color: var(--primary);
}

.hero-content h1 span {
  font-size: 6rem;
  color: var(--hint);
}

.hero-content p {
  font-size: 2rem;
  color: #404040;
}

.hero-content .btn,
.dashboard .dashboard-header .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--hint);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 2rem;
}

.hero-content .btn:hover,
.dashboard .dashboard-header .btn:hover {
  background-color: #91060b;
  transition: 0.1s;
}

.stats {
  display: flex;
  margin-top: 20px;
}

.stat-item {
  background-color: #d9d9d9;
  padding: 20px;
  margin-right: 10px;
  text-align: center;
  border-radius: 5px;
}

.stat-item h2 {
  margin: 0;
  font-size: 1.5em;
  color: var(--primary);
}

.stat-item p {
  margin: 5px 0 0;
  font-size: 1em;
  color: #404040;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  right: 0;
}
/* Hero Section End */

/* Card Services Start */
.slider-container {
  max-width: 100%;
  margin: auto;
  padding: 0 50px;
  padding-bottom: 50px;
}

.title {
  display: grid;
  place-items: center;
  height: 15vh;
}

h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: bolder;
}

.swiper-container {
  width: 100%;
  padding: 20px 0;
}

.card-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-link {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
}

.card-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-link img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.2em;
  color: var(--primary);
  margin-bottom: 5px;
}

.card-content .card-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--hint);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
}

.card-content .card-button:hover {
  background-color: #91060b;
  transition: background-color 0.1s ease-in-out;
}
/* Card Services End */

/* About Section Start */
.about {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.content-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.about-content,
.why-us-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.about-content h2,
.why-us-content h2,
.table-header h2 {
  color: #003399;
  font-size: 24px;
}

.about-content p,
.why-us-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.about-content .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--hint);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.about-content .btn:hover {
  background-color: #91060b;
  transition: 0.1s;
}

.why-us-content .social-icons {
  display: flex;
  gap: 10px;
}

.why-us-content .social-icons a {
  min-width: 2rem;
  height: 2rem;
  border: 1px solid var(--hint);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  font-size: 1rem;
}

.why-us-content .social-icons a i {
  color: var(--hint);
}

.why-us-content .social-icons a:hover {
  background-color: var(--hint);
  transition: 0.01s;
  i {
    color: #fff;
  }
}

/* About us End */

/* Client Section Start */
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 100px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 75px;
  margin-right: 50px;
}
/* client Section End */

/* About us pages start */
/* visi misi start */
.vision-container {
  display: flex;
  flex-wrap: wrap; /* Membuat elemen turun ke baris berikutnya pada layar kecil */
  max-width: 100%;
  background-color: white;
  margin-top: 80px;
  gap: 20px; /* Jarak antar elemen visi dan misi */
}

.visi,
.misi {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
  min-width: 300px; /* Minimal lebar agar tidak terlalu sempit */
}

.visi {
  background-color: var(--primary);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border-radius: 5px;
}

.visi h1 {
  font-size: 36px;
  color: white;
  font-weight: bolder;
  margin-bottom: 20px;
}

.misi {
  background-color: white;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.misi h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: bolder;
  margin-bottom: 20px;
}

.misi ol {
  padding-left: 20px;
}

.misi li {
  margin-bottom: 10px;
}
/* visi misi end */

/* Nilai perusahaan start */
.value h1,
.legal h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: bolder;
  margin-top: 30px;
  width: 100%;
  justify-content: center;
}

.value-container,
.legal-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  text-align: center;
  margin: 10px;
}

.column i {
  font-size: 25px;
  color: var(--hint);
}

.column p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bolder;
}
/* Nilai perusahaan start */

/* Legalitas start */
.legal-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px; /* Atur ukuran maksimum kontainer */
}

/* CSS untuk kolom individual */
.column-legal {
  flex: 1 1 calc(33.333% - 20px); /* Membagi menjadi tiga kolom, dengan jarak antar kolom */
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.column-legal img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.column-legal p {
  font-size: 14px;
  color: #333;
}
/* Legalitas end */
/* about page end */

/* contact page start */
/* Kontak */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;
}

.contact .content {
  max-width: 800px;
  text-align: center;
}

.contact .content h1,
.dashboard .dashboard-header h1 {
  font-size: 36px;
  font-weight: bolder;
  color: var(--primary);
}

.contact .content p {
  font-weight: 300;
  color: var(--primary);
}

.contact-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contact-info {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.contact-info .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.contact-info .box .icon {
  min-width: 60px;
  height: 60px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.contact-info .box .icon i {
  color: #fff;
}

.contact-info .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: var(--primary);
  flex-direction: column;
  font-weight: 300;
}

.contact-info .box .text h3 {
  font-weight: 500;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contact-form,
.login-wrapper {
  width: 40%;
  padding: 40px;
  background: #d9d9d9;
  border: 2px #003399;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-form h2,
.login-wrapper h2 {
  font-size: 30px;
  color: var(--primary);
  font-weight: bolder;
}

.contact-form .input-box,
.login-wrapper .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea,
.login-wrapper .input-box input {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid var(--primary);
  outline: none;
  resize: none;
  background: rgba(0, 51, 153, 0.01);
}

.contact-form .input-box span,
.login-wrapper .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: var(--primary);
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:valid ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:valid ~ span,
.login-wrapper .input-box input:focus ~ span,
.login-wrapper .input-box input:valid ~ span {
  color: var(--primary);
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"],
.login-wrapper .input-box input[type="submit"] {
  width: 100px;
  background: var(--hint);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  font-size: 1rem;
}

.contact-form .input-box input[type="submit"]:hover,
.login-wrapper .input-box input[type="submit"]:hover {
  background-color: #91060b;
  transition: 0.1s;
}

/* Maps */
.map-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.map-container h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: bolder;
  margin: 30px;
}

iframe {
  width: 100%;
  height: 500px;
}
/* contact page end */

/* recruitment page start */
.info-container,
.services-container {
  width: 100%;
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 150px;
  min-height: 100vh;
}

.info-container .title {
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.info-container h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: bolder;
}

.info,
.services-section {
  margin-bottom: 20px;
}

.info h2,
.services-section h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: bolder;
}

.info ol {
  margin: 0;
  padding-left: 20px;
}

.info ol li {
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: justify;
}

.sticky-button {
  position: fixed;
  bottom: 15px;
  left: 80%;
  transform: translateX(-50%);
  z-index: 1000;
  text-align: center;
}

.sticky-button button {
  background-color: var(--hint);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(241, 11, 19, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-button button:hover {
  background-color: #91060b;
  transform: translateY(-2px);
}
/* recruitment page end */

/* regist page start */
.form-container {
  padding: 20px;
  width: 100%;
  margin-top: 50px;
}

.form-container .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 75px 100px;
}

.form-container .title h1 {
  font-size: 36px;
  color: var(--primary);
  font-weight: bolder;
  margin-top: 50px;
}

.form-container .title p {
  color: var(--primary);
  margin-top: 25px;
  font-weight: bold;
}

.form-container .title p a {
  color: var(--hint);
}

.form-container .title p a:hover {
  text-decoration: underline;
  color: var(--hint);
}

/* form start */
.apply-form {
  padding: 50px 100px;
}

.apply-form form .input-box {
  margin-bottom: 15px;
  position: relative;
}

.apply-form .input-box input {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid var(--primary);
  outline: none;
  resize: none;
  align-items: center;
}

.apply-form .input-box label {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.file-text {
  color: #555;
  font-style: italic;
}

.apply-form .input-box input[type="submit"] {
  background: var(--hint);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  font-size: 1rem;
}

.apply-form .input-box input[type="submit"]:hover {
  background-color: #91060b;
  transition: 0.1s;
}

.file-input {
  pointer: cursor;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #d9d9d9;
}

select,
input[type="file"]::-webkit-file-upload-button {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
  flex: 1;
  background-color: #fff;
  /* font-weight: 600; */
}

.select {
  position: relative;
  display: flex;
  line-height: 3;
  overflow: hidden;
  border-radius: 0.25rem;
}
/* form end */
/* regist page end */

/* Services page start */
.hero-security {
  position: relative;
  height: 75vh;
  background: url("../pic/hero/hero-satpam.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-outsource {
  position: relative;
  height: 75vh;
  background: url("../pic/hero/hero-outsource.jpg") no-repeat center top/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-building {
  position: relative;
  height: 75vh;
  background: url("../pic/hero/hero-building.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-vehicle {
  position: relative;
  height: 75vh;
  background: url("../pic/hero/hero-vehicle.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-parking {
  position: relative;
  height: 75vh;
  background: url("../pic/hero/hero-parking.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 50, 0.5);
}

.security-content,
.outsource-content,
.building-content,
.vehicle-content,
.parking-content {
  position: relative;
  color: white;
  text-align: center;
}

.services-section h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.services-section h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.security-content h1,
.outsource-content h1,
.building-content h1,
.vehicle-content h1,
.parking-content h1 {
  font-size: 3em;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 5px var(--primary);
}

.services-section p {
  text-align: justify;
}

.services-section ol {
  padding: 15px;
}

.services-section li {
  color: #003399;
  text-align: justify;
  font-weight: normal;
}

.services-section li span {
  color: black;
  padding: 10px;
  font-weight: normal;
}

.services-section ul {
  padding: 15px;
}

.services-section ul li {
  color: black;
  text-align: justify;
  font-weight: normal;
}

/* Login Page */

/* Dashboard page start */
main.table {
  width: 85vw;
  height: 50vh;
  background-color: #fff;
  backdrop-filter: blur(7px);
  border-radius: .8rem;
  overflow: hidden;
  margin: 5rem;
}

thead {
  background-color: #d9d9d9;
  color: var(--primary);
}

th {
  position: sticky;
  top: 0;
  z-index: 2;
  text-align: center;
}

.table-body {
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  border: 1px solid #d9d9d9;
  white-space: nowrap;
}

td {
  text-align: left; 
}

.dashboard-header {
  display: flex; /* Mengaktifkan Flexbox */
  justify-content: space-between; /* Mengatur jarak maksimum antara elemen */
  align-items: center; /* Menyelaraskan elemen secara vertikal */
  padding: 10px; /* Opsional: Beri jarak pada bagian dalam */
  border-bottom: 1px solid #ddd; /* Opsional: Garis bawah */
  margin: 20px;
}
/* Dashboard page end */

/* Additional login */
.login-container .login-wrapper .input-box a{
  width: 100px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  font-size: 1rem;
}

.login-container .login-wrapper .input-box a:hover{
  background: #002266;
}

/* Responsive Styles Tablet */
@media (max-width: 1158px) {
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    margin-top: 100px;
    gap: 20px;
    padding: 20px;
  }

  .hero-content {
    max-width: 50%;
    flex: 1;
    text-align: left;
  }

  .hero-image {
    flex: 1;
    text-align: right;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    right: 0;
  }
}

@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-container .contact-info {
    margin-bottom: 40px;
  }

  .contact-container .contact-info,
  .contact-form {
    width: 100%;
  }

  .login-wrapper {
    width: 50%;
  }
}
/* Services page end */

/* Responsive Styles HP */
/* Navbar */
@media (max-width: 768px) {
  /* Navbar Start */
  .hamburger {
    display: block;
  }

  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 100%;
    border-top: 1px solid #d9d9d9;
    z-index: 999;
    align-items: center;
  }

  .navbar-nav.show {
    display: flex;
  }

  .navbar-nav a,
  .navbar-nav .dropdown-toggle {
    padding: 14px;
    text-align: center;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    display: none;
    border: none;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }
  /* Navbar End */

  /* Login */
  .login-wrapper {
    width: 80%;
  }

  /* index start */
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    flex-basis: 1;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
    overflow: hidden;
  }

  .hero-image {
    max-width: 100%;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    margin: 0 2.5rem;
  }
  /* index end */

  /* visi misi dan legalitas start */
  .vision-container {
    flex-direction: column;
  }

  .visi,
  .misi {
    min-width: 100%;
  }

  .column-legal {
    flex: 1 1 100%;
  }
  /* visi misi dan legalitas end */

  /* Regist form start */
  .form-container .title {
    margin: 65px 0;
  }
  /* regist form end */

  .stats {
    width: 100%;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .stat-item {
    margin: 0;
  }

  .services-container,
  .info-container {
    padding: 15px 75px;
  }

  .services-section h3 {
    font-size: 1rem;
    text-align: justify;
  }

  /* Dashboard */
  main.table {
    width: 85vw;
    overflow: hidden;
    margin: 4rem;
  }

  th, td {
    font-size: 17px;
    padding: 5px;
  }

  .table-body {
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    text-align: center;
    margin-top: 5px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h1 span {
    font-size: 1.8rem;
  }

  .stats {
    width: 100%;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .stat-item {
    margin: 0;
  }

  .services-container,
  .info-container {
    padding: 5px 50px;
  }

  .form-container {
    margin-top: 75px;
  }

  .info-container .title {
    margin: 50px 0;
  }

  main.table {
    width: 87vw;
    overflow: hidden;
    margin: 2rem;
  }

  th, td {
    font-size: 12px;
    padding: 5px;
  }

  .table-body {
    overflow-y: auto;
  }
  
  .form-container .title p {
      margin: 20px;
  }
}
