.brand-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.container-scroller {
  height: 100vh;
}

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-wrapper {
  position: relative;
}

.form-control {
  padding-left: 35px;
  border-radius: 50px;
}

.input-wrapper i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #e66136;
}

.auth-link {
  font-size: 0.9rem;
  color: #e66136 !important;
  text-decoration: none;
}
.auth-link:hover {
  color: #484848 !important;
}

/* Full page loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Bouncing dots */
.loader-dots {
  display: flex;
  gap: 8px;
}

.loader-dots span {
  width: 15px;
  height: 15px;
  background: #E66136;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

/* Delay each dot */
.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Bounce animation */
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}
