* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

body {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d253e9 1px, transparent 1px);
    background-size: 50px 50px;
    animation: stars 6s linear infinite;
    opacity: 0.15;
    z-index: 0;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: -50px -50px; }
}


h1 {
    color: #d253e9;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(210, 83, 233, 0.6);
    z-index: 99;
}

.form-container {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

input {
    height: 45px;
    border: 2px solid #751286;
    background-color: #222;
    color: #fff;
    outline: none;
    padding: 0 12px;
    width: 100%;
    border-radius: 8px;
    transition: 0.3s ease;
    z-index: 99;
}

input:focus {
    border-color: #d253e9;
    box-shadow: 0 0 10px rgba(210, 83, 233, 0.6);
}

button {
    border: none;
    height: 45px;
    min-width: 100px;
    background: linear-gradient(135deg, #751286, #d253e9);
    color: #fff;
    cursor: pointer;
    transition: 0.4s ease;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(210, 83, 233, 0.4);
    z-index: 99;
}

button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(210, 83, 233, 0.6);
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    width: 100%;
    max-width: 400px;
    z-index: 99;
}

li {
    background: linear-gradient(135deg, #4a148c, #6a1b9a);
    padding: 12px 15px;
    margin: 10px auto;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
    z-index: 99;
}

li:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(210, 83, 233, 0.4);
}

span {
    cursor: pointer;
    color: #ff4081;
    font-weight: bold;
    transition: 0.3s ease;
    z-index: 99;
}

span:hover {
    color: #ff80ab;
    transform: scale(1.2);
}
.decor-particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.decor-particles::before, 
.decor-particles::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: #d253e9;
    border-radius: 50%;
    top: 100%;
    left: 30%;
    animation: floatUp 6s linear infinite;
}

.decor-particles::after {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 2s;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-120vh); opacity: 0; }
}
