body {
    background-color: #000000;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    color: white;
}
#particle-ring {
    display: block;
    pointer-events: none; /* Let clicks pass through */
}
.glass-panel {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.3px solid rgba(255, 255, 255, 0.1);
}
.input-field {
    background: rgba(20, 20, 25, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #E0E0E0;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px !important;
    font-weight: 300 !important;
}
.input-field::placeholder {
    color: rgba(192, 192, 192, 0.4);
}
/* Autofill Overrides for Stealth Look */
.input-field:-webkit-autofill,
.input-field:-webkit-autofill:hover,
.input-field:-webkit-autofill:focus {
    -webkit-text-fill-color: #E0E0E0 !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(20, 20, 25, 1) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
.input-field:focus {
    background: rgba(20, 20, 25, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.5) !important; 
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff;
}
.btn-glow {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 10px;
    font-weight: 300; /* Thinner weight to match inputs */
    letter-spacing: 0.2em;
}
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(224, 224, 224, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 2;
}
.password-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
}
.password-toggle svg {
    width: 14px;
    height: 14px;
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}
.btn-glow:hover::before {
    left: 100%;
}
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    background: rgba(255, 255, 255, 0.05);
}

.emp-blackout {
    opacity: 0.1 !important;
    transition: none !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
