body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
}

.login-container {
    background-color: #2b2b2b;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 150px;
    margin-bottom: 1rem;
}

h1 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7289da;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.discord-button:hover {
    background-color: #5f73bc;
}

.discord-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}