/* Custom Stealth UI Styles */

:root {
    --accent: #0044ff;
    --glass-bg: rgba(10, 10, 12, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

body {
    background-color: #000;
}

#particle-ring {
    display: block;
    width: 100%;
    height: 100%;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.input-field {
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 68, 255, 0.1);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.btn-glow:active {
    transform: translateY(1px);
}

.emp-blackout {
    animation: blackout 0.05s linear;
}

@keyframes blackout {
    0% { filter: brightness(1); opacity: 1; }
    50% { filter: brightness(0); opacity: 0; }
    100% { filter: brightness(1); opacity: 1; }
}

/* Custom Scrollbar (if needed) */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Hide Password Toggle on Autocomplete */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}
