html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.lplr-wrapper {
    position: fixed;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1606813909359-9d11c1c01f2a?auto=format&fit=crop&w=1920&q=80')
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lplr-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, 0.78);
}

.lplr-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #020617, #0f172a);
    padding: 42px 36px;
    border-radius: 22px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 60px rgba(0,0,0,.85);
    text-align: center;
}

.lplr-logo {
    max-width: 220px;
    margin-bottom: 18px;
}

.lplr-card h2 {
    color: #22c55e;
    margin-bottom: 25px;
}

.lplr-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    background: #020617;
    color: #fff;
    font-size: 14px;
}

.lplr-card button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #22c55e;
    color: #020617;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.lplr-card button:hover {
    opacity: 0.9;
}
