/* Full page wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c0f14;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Container for loader + text */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Loader placeholder */
.loader-img {
  width: 85px;
  height: 85px;
  background: url('../icons/android-chrome-192x192.png') no-repeat center/contain;

  /* Placeholder color if no image */
  background-color: #13161d;
  border-radius: 50%;
  animation: rotateShrink 2s infinite ease-in-out;

  /* Glow */
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.6),
              0 0 25px rgba(0, 180, 255, 0.4),
              0 0 50px rgba(0, 180, 255, 0.2);
}

/* Text under loader */
.loader-text {
  color: #a8b3c8;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* Rotating + shrinking */
@keyframes rotateShrink {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(180deg) scale(0.5);
  }
  50% {
    transform: rotate(360deg) scale(1);
  }
  75% {
    transform: rotate(-180deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg) scale(1);
  }
}

 /* Helper class for Tailwind input styling consistency */
    .vtech-input {
        appearance: none; 
        position: relative; 
        display: block; 
        width: 100%; 
        padding: 0.5rem 0.75rem; 
        border: 1px solid #475569; /* slate-600 */
        border-radius: 0.375rem; /* rounded-md */
        background-color: #334155; /* slate-700 */
        color: #f1f5f9; /* slate-100 */
        outline: none; 
        font-size: 0.875rem; /* sm:text-sm */
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    .vtech-input::placeholder {
        color: #94a3b8; /* slate-400 */
    }
    .vtech-input:focus {
        border-color: #6366f1; /* indigo-500 */
        box-shadow: 0 0 0 1px #6366f1; /* focus:ring-indigo-500 */
    }
    
    
/*Footer*/
.vrt-footer {
    background: radial-gradient(circle at top, #0f0f0f, #050505);
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #cfcfcf;
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

.vrt-footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 48px 20px 28px;
}

.vrt-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.vrt-footer-logo {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 6px rgba(0,0,0,.6));
}

.vrt-footer-brand strong {
    font-size: 16px;
    color: #fff;
}

.vrt-footer-brand p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #8a8a8a;
}

.vrt-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}

.vrt-footer-links h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    color: #fff;
}

.vrt-footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #b0b0b0;
    text-decoration: none;
}

.vrt-footer-links a:hover {
    color: #fff;
}

.vrt-footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.08), transparent);
    margin: 36px 0 20px;
}

.vrt-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #8a8a8a;
}

.vrt-footer-meta {
    opacity: .8;
}

