/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(-45deg, #0a0f2c, #1b1f3b, #23395d, #0a0f2c);
    background-size: 400% 400%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: animateBackground 10s ease infinite;
}

/* Animation de fond */
@keyframes animateBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Boîte de connexion (Glassmorphism) */
.login-box {
    background: rgba(44, 47, 74, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Bouton Discord */
.discord-button {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
}

.discord-button i {
    margin-right: 8px;
}

.discord-button:hover {
    background-color: #4854c7;
    transform: scale(1.05);
}

/* Suppression du soulignement sur les liens */
a {
    text-decoration: none;
}
