body {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

.login-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 24px;
    gap: 9px;

    background: #5865F2;
    border-radius: 54px;

    font-size: 20px;
}

.login-button:hover {
    cursor: pointer;
}

.discord-icon {
    width: 159px;
    height: 24px;
}

.disabled {
    opacity: 0.5;
}

.disabled:hover {
    cursor: not-allowed;
}