body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #1a1a2e;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.4);
    text-align: center;
    width: 350px;
}

.logo {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.login-btn {
    background-color: #5865F2; /* Discord Lila/Blau */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
    width: 100%;
}

.login-btn:hover {
    background-color: #4752C4;
    transform: scale(1.05);
}