body{
  background:var(--secondary-bg);
  color: var(--light-text);
}

/* dark-bg-input-with-icon: light themed input with left icon (uses theme vars) */
.dark-bg-input-with-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--input-bg); /* uses project light/input background */
    border-radius: 10px;
    padding: 0.9rem 0.9rem;
    border: 1px solid rgba(43, 43, 43, 0.06);
    box-shadow: 0 6px 18px rgba(107, 26, 26, 0.06);
}

/* icon styling (left) */
.dark-bg-input-with-icon i {
    flex: 0 0 28px;
    width: 28px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--accent);
    opacity: 0.95;
}

/* make bootstrap form-control blend into the wrapper */
.dark-bg-input-with-icon .form-control {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    height: auto;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    outline: none;
}

/* placeholder & focus */
.dark-bg-input-with-icon .form-control::placeholder {
    color: var(--secondary);
    opacity: 1;
}
.dark-bg-input-with-icon .form-control:focus {
    box-shadow: none;
}

/* smaller gap on tight widths if needed */
@media (max-width: 400px) {
    .dark-bg-input-with-icon { gap: 0.5rem; padding: 0.5rem 0.7rem; border-radius: 12px; }
    .dark-bg-input-with-icon i { width: 24px; flex: 0 0 24px; font-size: 0.98rem; }
}

a{
    color: var(--link);
}
a:hover{
    color: var(--link-hover);
    text-decoration: none;
}

/* Transparent glass-style info note used on the login page */
.info-note {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--light-text);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 26px rgba(15,10,10,0.04);
    width: 100%;
}

.info-note__title { font-size: 0.98rem; color: var(--light-text); }
.info-note__content ul { margin: 0; padding-left: 1rem; font-size: 0.92rem; color: var(--light-text); }
.info-note__content li { margin-bottom: 6px; line-height: 1.35; }
.info-note__content strong { color: var(--light-text); }

/* small descriptor */
.muted-small { color: var(--light-text); opacity: 0.85; font-size: 0.88rem; }

/* compact on very small screens */
@media (max-width: 420px) {
    .info-note { padding: 10px 12px; }
    .info-note__content ul { font-size: 0.88rem; }
}