/* ===========================================================
   GLOBAL
=========================================================== */
body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
}

/* FIXED BACKGROUND (no movement) */
.wl-bg {
    position: fixed;
    inset: 0;
    background: url('https://i.ibb.co/DDQXWCMK/login-hintergrund.png') center/cover no-repeat;
    z-index: -1;
}

/* ===========================================================
   BOOTSCREEN (A)
=========================================================== */
#wl-bootscreen {
    position: fixed;
    inset: 0;
    background: #05000a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    animation: bootFadeOut 2.5s ease forwards;
    animation-delay: 2.5s;
}

.boot-logo {
    width: 260px;
    height: 160px;
    background: url("https://i.ibb.co/MDjbXzm8/login-logo.png") center/contain no-repeat;
    animation: bootGlow 2.8s ease-in-out infinite;
}

.boot-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,224,0.35), transparent 70%);
    filter: blur(50px);
}

@keyframes bootGlow {
    0%,100% { filter: drop-shadow(0 0 12px #ff00f6); }
    50%     { filter: drop-shadow(0 0 26px #ff00f6); }
}

@keyframes bootFadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* ===========================================================
   LOGIN CARD (fade + zoom + drop)
=========================================================== */
#wl-login-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    padding: 50px;
    transform: translate(-50%, -50%) scale(0.88);
    text-align: center;

    background: rgba(15, 0, 30, 0.55);
    border-radius: 40px;
    border: 2px solid rgba(255,0,240,0.35);
    box-shadow: 0 0 50px rgba(255,0,240,0.25);
    backdrop-filter: blur(14px);

    opacity: 0;
    z-index: 1000;

    transition: opacity 1.2s ease, transform 1.2s ease;
}

#wl-login-card.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* LOGO */
.wl-logo-box {
    position: relative;
}
.wl-logo {
    width: 250px;
    animation: logoFloat 3.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,100% { transform: translateY(0); filter: drop-shadow(0 0 12px #ff00e600); }
    50%     { transform: translateY(-6px); filter: drop-shadow(0 0 22px #ff00ff00); }
}

.wl-logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,0,220,0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(26px);
    top: -20px;
    left: -20px;
}

/* TITLES */
.wl-title {
    margin-top: 15px;
    font-size: 26px;
    letter-spacing: 3px;
    color: #ff00e6;
    text-shadow: 0 0 20px #ff00e6;
}

.wl-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    color: #d0b8ff;
}

/* INPUT CAPSULES */
.wl-input-box {
    position: relative;
    margin-bottom: 26px;
}

.wl-input-box input {
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,0,240,0.25);
    color: white;

    outline: none;
    font-size: 15px;
    transition: .25s;
}

.wl-input-box input:focus {
    border-color: #ff00e6;
    box-shadow: 0 0 14px rgba(255,0,240,0.45);
}

/* Eye Icon */
.wl-eye {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 20px;
    opacity: 0.65;
    cursor: pointer;
    transition: .25s;
}

.wl-eye:hover { opacity: 1; }

/* BUTTON */
.wl-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    color: #fff;

    background: linear-gradient(90deg, #7b00ff18, #ff00e61c);
    border-radius: 16px;
    border: none;
    cursor: pointer;

    position: relative;
    overflow: hidden;
    letter-spacing: 1px;

    transition: transform .2s;
}

.wl-btn:hover {
    transform: scale(1.03);
}

.btn-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255,0,255,0.55), transparent 70%);
    animation: glowMove 4s infinite linear;
}

@keyframes glowMove {
    from { transform: translate(-40%, -40%); }
    to   { transform: translate(40%, 40%); }
}
