/* Navbar Styles */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 2rem;
  z-index: 1500;
}

.navbar-logo-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1b1b4a;
  text-align: center;
}

.nav-link {
  color: #000000 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: #E91E63 !important;
  font-weight: 600;
}

.btn-register {
  background-color: #E91E63;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px 20px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 0.5rem 1rem;
  }
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.3s ease-in-out; /* Smooth transition */
}


.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.input-container.focus label,
.input:focus + label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 1rem;
  color: #ffffff;
}