.colr {
  color: #000000;
}

#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Tambahkan transition untuk smooth hide */
  transition: opacity 0.5s ease-out;
}

/* Class untuk menyembunyikan loading screen */
#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #900c0c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.box {
  padding: 20px;
  color: #1d809f;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-top: 10px;
}
.box:hover {
  color: #fff;
  background-color: #1d809f;
  border-color: #1d809f;
  transition: 0.5s;
}

.icon-menu {
  font-size: 100px;
}
a {
  text-decoration: none !important;
}

@media (max-width: 480px) {
  .box {
    font-size: 16px;
    padding: 15px;
  }
  .icon-menu {
    font-size: 60px;
  }
}

/* Added styles for registration multi-step form */

body {
  background: #f9fafc;
  font-family: "Poppins", sans-serif;
}

.registration-container {
  display: flex;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.step-sidebar {
  width: 280px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border: 1px solid #e0e6ed;
  margin-right: 20px;
  position: relative;
}

.step-sidebar h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 30px;
  color: #900c0c;
  user-select: none;
  font-family: "Poppins", sans-serif;
  border: 2px solid #900c0c;
  padding: 6px 20px;
  border-radius: 20px;
  display: inline-block;
}

.step-list.timeline li.active .step-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #900c0c;
  border: 2px solid #900c0c;
  padding: 6px 20px;
  border-radius: 20px;
  user-select: none;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list.timeline {
  position: relative;
  padding-left: 50px;
  /* Removed vertical line */
  border-left: none !important;
  box-shadow: none !important;
  max-width: 250px;
  background: #fff;
  border-radius: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.step-list.timeline li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #a0a0a0;
  font-weight: 500;
  cursor: default;
  padding-left: 15px;
}

.step-list.timeline li:last-child {
  margin-bottom: 0;
}

.step-list.timeline li .step-number {
  position: absolute;
  left: -50px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #6b7280;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
}

.step-list.timeline li.active .step-number {
  background: #900c0c;
  color: #fff;
}

.step-list.timeline li .step-label {
  padding: 6px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.step-list.timeline li.active .step-label {
  background-color: #900c0c;
  color: #fff;
}

.form-content {
  flex: 1;
  padding: 30px 40px;
}

.form-content h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  color: #900c0c;
  font-family: "Poppins", sans-serif;
  border: 2px solid #900c0c;
  padding: 6px 20px;
  border-radius: 20px;
  display: inline-block;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 600;
  color: #333;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
}

.form-control:focus {
  border-color: #900c0c;
  box-shadow: 0 0 5px rgba(26, 78, 216, 0.5);
  outline: none;
}

.btn-green {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-green:hover {
  background-color: #45a049;
}

.btn-secondary {
  background-color: #e0e0e0;
  border: none;
  color: #333;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #d5d5d5;
}

.step-buttons {
  margin-top: 20px;
  text-align: right;
}

/* Footer styles */
.site-footer {
  background-color: #fff;
  padding: 15px 30px;
  border-top: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  color: #900c0c;
  font-weight: 600;
  font-size: 14px;
}

.footer-left,
.footer-right {
  user-select: none;
}
