body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #3a0ca3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* BOX */
.login-box {
    background: rgba(42, 42, 64, 0.9);
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* TITLE */
.login-box h2 {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #b266ff;
}

/* INPUT */
.login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    outline: none;
}

/* BUTTON */
.login-box button {
    width: 100%;
    padding: 10px;
    background: #6a0dad;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #8a2be2;
    box-shadow: 0 0 10px #b266ff;
}

/* LINK */
.login-box a {
    color: #b266ff;
    text-decoration: none;
}